diff --git a/docs/api/objects/Bone.html b/docs/api/objects/Bone.html index 5a0c5ed5ae1f8bc065925ca20f2c1e6cf8651d2b..1894dc74344786ad068dc9228811ebd6b7e91086 100644 --- a/docs/api/objects/Bone.html +++ b/docs/api/objects/Bone.html @@ -41,6 +41,15 @@ An optional reference to the [page:SkinnedMesh]. +

Methods

+ +

[method:Object3D clone]([page:Object3D object])

+
+ object -- (optional) Object3D which needs to be cloned. If undefined, clone method will create a new cloned Bone Object. +
+
+ Clone a Bone Object. +

Source

diff --git a/docs/api/objects/LOD.html b/docs/api/objects/LOD.html index ee97d3286a9e1c08eab41ab97197185e31082174..de148dc9a5af6969dda98aea5e1f5518bcfc8151 100644 --- a/docs/api/objects/LOD.html +++ b/docs/api/objects/LOD.html @@ -75,6 +75,14 @@
Update the visiblility of the level of detail based on the distance from the camera.
+ +

[method:Object3D clone]([page:Object3D object])

+
+ object -- (optional) Object3D which needs to be cloned. If undefined, clone method will create a new cloned LOD Object. +
+
+ Clone a LOD Object. +

Source

diff --git a/docs/api/objects/LensFlare.html b/docs/api/objects/LensFlare.html index cacdcca7057656b7af8e245219ad1ddf208ed3b8..6af7c06bb2f35d3c8d469a7fba91c4947ba15b43 100644 --- a/docs/api/objects/LensFlare.html +++ b/docs/api/objects/LensFlare.html @@ -65,6 +65,14 @@ Updates the lens flare based on the [page:LensFlare.positionScreen positionScreen] property. +

[method:Object3D clone]([page:Object3D object])

+
+ object -- (optional) Object3D which needs to be cloned. If undefined, clone method will create a new cloned LensFlare Object. +
+
+ Clone a LensFlare Object. +
+

Source

[link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js] diff --git a/docs/api/objects/Line.html b/docs/api/objects/Line.html index 1791110801ecfcbb557a916a1386534164fb2ff0..4b3f3d15dc4864089f9e26496e3b9f78d641799e 100644 --- a/docs/api/objects/Line.html +++ b/docs/api/objects/Line.html @@ -63,6 +63,14 @@
Get intersections between a casted ray and this Line. [page:Raycaster.intersectObject] will call this method.
+ +

[method:Object3D clone]([page:Object3D object])

+
+ object -- (optional) Object3D which needs to be cloned. If undefined, clone method will create a new cloned Line Object. +
+
+ Clone a Line Object. +

Source

diff --git a/docs/api/objects/LineSegments.html b/docs/api/objects/LineSegments.html index ded538cff9aaee40fd3f19182e13c8c763f834ac..8c0ec017032cc3976079fe8f54c0d7f388903830 100644 --- a/docs/api/objects/LineSegments.html +++ b/docs/api/objects/LineSegments.html @@ -45,6 +45,15 @@
Get intersections between a casted ray and this Line. [page:Raycaster.intersectObject] will call this method.
+ +

[method:Object3D clone]([page:Object3D object])

+
+ object -- (optional) Object3D which needs to be cloned. If undefined, clone method will create a new cloned LineSegments Object. +
+
+ Clone a LineSegments Object. +
+

Source

diff --git a/docs/api/objects/Mesh.html b/docs/api/objects/Mesh.html index cd32dfc54c3c0bdd8944f7d5254166c76821660e..da965d2ee4d4840718e64d07d44f55077ab32d77 100644 --- a/docs/api/objects/Mesh.html +++ b/docs/api/objects/Mesh.html @@ -96,6 +96,14 @@
Get intersections between a casted ray and this mesh. [page:Raycaster.intersectObject] will call this method.
+ +

[method:Object3D clone]([page:Object3D object])

+
+ object -- (optional) Object3D which needs to be cloned. If undefined, clone method will create a new cloned Mesh Object. +
+
+ Clone a Mesh Object. +

Source

diff --git a/docs/api/objects/MorphAnimMesh.html b/docs/api/objects/MorphAnimMesh.html index c43ad3ac0f4678b42af0aa925b0028bf894038e6..4d3831bf9ac2ec5a32754da177aaeeccef76c3f6 100644 --- a/docs/api/objects/MorphAnimMesh.html +++ b/docs/api/objects/MorphAnimMesh.html @@ -165,6 +165,14 @@ Defines an animation. Sets the geometry.animations[label] to be an object with the start and end properties. +

[method:Object3D clone]([page:Object3D object])

+
+ object -- (optional) Object3D which needs to be cloned. If undefined, clone method will create a new cloned MorphAnimMesh Object. +
+
+ Clone a MorphAnimMesh Object. +
+

Source

[link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js] diff --git a/docs/api/objects/PointCloud.html b/docs/api/objects/PointCloud.html index ca4e488c4514c5fa9f03b30d5ac5d3ae15401ff5..1df63775c6e9edc037129ed3accc4711506cded7 100644 --- a/docs/api/objects/PointCloud.html +++ b/docs/api/objects/PointCloud.html @@ -47,6 +47,13 @@ Get intersections between a casted ray and this PointCloud. [page:Raycaster.intersectObject] will call this method. +

[method:Object3D clone]([page:Object3D object])

+
+ object -- (optional) Object3D which needs to be cloned. If undefined, clone method will create a new cloned PointCloud Object. +
+
+ Clone a PointCloud Object. +

Source

diff --git a/docs/api/objects/Skeleton.html b/docs/api/objects/Skeleton.html index 9a9569cee708ff3db5b3e06c399078e509c96d7f..e09c7eaf73b7467b89e0f6c19e10fb040533824a 100644 --- a/docs/api/objects/Skeleton.html +++ b/docs/api/objects/Skeleton.html @@ -120,6 +120,10 @@ This is called automatically by the [page:WebGLRenderer] if the skeleton is used with a [page:SkinnedMesh]. +

[method:Skeleton clone]()

+
+ Clone a Skeleton Object. +

Source

diff --git a/docs/api/objects/SkinnedMesh.html b/docs/api/objects/SkinnedMesh.html index 5ce5e8acb610c2115740a6be6651af102e4bbdd9..62141e3943a9efec1367b030e36174c8eeb09505 100644 --- a/docs/api/objects/SkinnedMesh.html +++ b/docs/api/objects/SkinnedMesh.html @@ -131,6 +131,14 @@ This method adds the bone to the skinned mesh when it is provided. It creates a new bone and adds that when no bone is given. +

[method:Object3D clone]([page:Object3D object])

+
+ object -- (optional) Object3D which needs to be cloned. If undefined, clone method will create a new cloned SkinnedMesh Object. +
+
+ Clone a SkinnedMesh Object. +
+

Source

[link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js] diff --git a/docs/api/objects/Sprite.html b/docs/api/objects/Sprite.html index e6ff5c994355baf1112f247d13f77cf6b7b75e87..a5a0469f95e5489fb4d632303a7a93677b52020f 100644 --- a/docs/api/objects/Sprite.html +++ b/docs/api/objects/Sprite.html @@ -47,7 +47,14 @@
This creates a new clone of the sprite.
- + +

[method:Object3D clone]([page:Object3D object])

+
+ object -- (optional) Object3D which needs to be cloned. If undefined, clone method will create a new cloned Sprite Object. +
+
+ Clone a Sprite Object. +

Source