Skip to content

Commit

Permalink
Release 4.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mistic100 committed Mar 26, 2022
2 parents 3e79c2f + 0530342 commit dac6a14
Show file tree
Hide file tree
Showing 165 changed files with 10,696 additions and 5,232 deletions.
3 changes: 2 additions & 1 deletion dist/adapters/cubemap-tiles.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/adapters/cubemap-tiles.js.map

Large diffs are not rendered by default.

25 changes: 25 additions & 0 deletions dist/adapters/cubemap-video.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import { AbstractAdapter, Viewer } from 'photo-sphere-viewer';

/**
* @summary Configuration of a cubemap video
*/
type CubemapVideoPanorama = {
source: string;
};

type CubemapVideoAdapterOptions = {
autoplay?: boolean;
muted?: boolean;
equiangular?: boolean;
}

/**
* @summary Adapter for cubemap videos
*/
declare class CubemapVideoAdapter extends AbstractAdapter<CubemapVideoPanorama> {

constructor(psv: Viewer, options: CubemapVideoAdapterOptions);

}

export { CubemapVideoAdapter, CubemapVideoAdapterOptions, CubemapVideoPanorama };
Loading

0 comments on commit dac6a14

Please sign in to comment.