Browse Source

fix for Issue #17854

unknown 5 years ago
parent
commit
df1805dd36
1 changed files with 3 additions and 3 deletions
  1. 3 3
      docs/api/en/core/Object3D.html

+ 3 - 3
docs/api/en/core/Object3D.html

@@ -240,7 +240,7 @@
 		<p>
 		<p>
 		id -- Unique number of the object instance<br /><br />
 		id -- Unique number of the object instance<br /><br />
 
 
-		Searches through the object's children and returns the first with a matching id.<br />
+		Searches through an object and its children, starting with the object itself, and returns the first with a matching id.<br />
 		Note that ids are assigned in chronological order: 1, 2, 3, ..., incrementing by one for each new object.
 		Note that ids are assigned in chronological order: 1, 2, 3, ..., incrementing by one for each new object.
 		</p>
 		</p>
 
 
@@ -248,7 +248,7 @@
 		<p>
 		<p>
 		name -- String to match to the children's Object3D.name property. <br /><br />
 		name -- String to match to the children's Object3D.name property. <br /><br />
 
 
-		Searches through the object's children and returns the first with a matching name.<br />
+		Searches through an object and its children, starting with the object itself, and returns the first with a matching name.<br />
 		Note that for most objects the name is an empty string by default. You will
 		Note that for most objects the name is an empty string by default. You will
 		have to set it manually to make use of this method.
 		have to set it manually to make use of this method.
 		</p>
 		</p>
@@ -258,7 +258,7 @@
 		name -- the property name to search for. <br />
 		name -- the property name to search for. <br />
 		value -- value of the given property. <br /><br />
 		value -- value of the given property. <br /><br />
 
 
-		Searches through the object's children and returns the first with a property that matches the value given.
+		Searches through an object and its children, starting with the object itself, and returns the first with a property that matches the value given.
 		</p>
 		</p>
 
 
 		<h3>[method:Vector3 getWorldPosition]( [param:Vector3 target] )</h3>
 		<h3>[method:Vector3 getWorldPosition]( [param:Vector3 target] )</h3>