Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/Helpers/videoDome.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,15 @@ export class VideoDome extends TransformNode {
protected _material: BackgroundMaterial;

/**
* The surface used for the skybox
* The surface used for the video dome
*/
protected _mesh: Mesh;
/**
* Gets the mesh used for the video dome.
*/
public get mesh(): Mesh {
return this._mesh;
}

/**
* A mesh that will be used to mask the back of the video dome in case it is a 180 degree movie.
Expand Down