|
@@ -1,8 +1,8 @@
|
|
|
module BABYLON {
|
|
|
/**
|
|
|
* Display a 360 degree photo on an approximately spherical surface, useful for VR applications or skyboxes.
|
|
|
- * As a subclass of Node, this allow parenting to the camera or multiple videos with different locations in the scene.
|
|
|
- * This class achieves its effect with a VideoTexture and a correctly configured BackgroundMaterial on an inverted sphere.
|
|
|
+ * As a subclass of Node, this allow parenting to the camera with different locations in the scene.
|
|
|
+ * This class achieves its effect with a Texture and a correctly configured BackgroundMaterial on an inverted sphere.
|
|
|
* Potential additions to this helper include zoom and and non-infinite distance rendering effects.
|
|
|
*/
|
|
|
export class PhotoDome extends Node {
|
|
@@ -34,7 +34,7 @@ module BABYLON {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * Create an instance of this class and pass through the parameters to the relevant classes, VideoTexture, StandardMaterial, and Mesh.
|
|
|
+ * Create an instance of this class and pass through the parameters to the relevant classes, Texture, StandardMaterial, and Mesh.
|
|
|
* @param name Element's name, child elements will append suffixes for their own names.
|
|
|
* @param urlsOfPhoto
|
|
|
* @param options An object containing optional or exposed sub element properties:
|