Browse Source

Travis CI: API documentation update at 2017-06-23 06:45:43 UTC.
[ci package]

Commit: https://github.com/urho3d/Urho3D/commit/58277e36219ea772375e8b292400bd7c0584d49c

Message: Add AS bindings for searching Node children by name.

urho3d-travis-ci 8 years ago
parent
commit
b51625df5b
3 changed files with 13 additions and 1 deletions
  1. 8 0
      Docs/AngelScriptAPI.h
  2. 4 0
      Docs/ScriptAPI.dox
  3. 1 1
      Source/Urho3D/.soversion

+ 8 - 0
Docs/AngelScriptAPI.h

@@ -7935,6 +7935,8 @@ Vector2 WorldToLocal2D(const Vector2&) const;
 void Yaw(float, TransformSpace = TS_LOCAL);
 
 // Properties:
+/* readonly */
+Array<Node> allChildrenByName;
 bool animationEnabled;
 /* readonly */
 Array<Variant> attributeDefaults;
@@ -7946,6 +7948,8 @@ String category;
 /* readonly */
 Array<Node> children;
 /* readonly */
+Array<Node> childrenByName;
+/* readonly */
 Array<Component> components;
 Vector3 direction;
 bool enabled;
@@ -10019,6 +10023,8 @@ Vector2 WorldToLocal2D(const Vector2&) const;
 void Yaw(float, TransformSpace = TS_LOCAL);
 
 // Properties:
+/* readonly */
+Array<Node> allChildrenByName;
 bool animationEnabled;
 /* readonly */
 LoadMode asyncLoadMode;
@@ -10039,6 +10045,8 @@ uint checksum;
 /* readonly */
 Array<Node> children;
 /* readonly */
+Array<Node> childrenByName;
+/* readonly */
 Array<Component> components;
 /* readonly */
 DebugRenderer debugRenderer;

+ 4 - 0
Docs/ScriptAPI.dox

@@ -9646,12 +9646,14 @@ Methods:
 
 Properties:
 
+- Node@[] allChildrenByName // readonly
 - bool animationEnabled
 - Variant[] attributeDefaults // readonly
 - AttributeInfo[] attributeInfos // readonly
 - Variant[] attributes
 - String category // readonly
 - Node@[] children // readonly
+- Node@[] childrenByName // readonly
 - Component@[] components // readonly
 - Vector3 direction
 - bool enabled
@@ -11456,6 +11458,7 @@ Methods:
 
 Properties:
 
+- Node@[] allChildrenByName // readonly
 - bool animationEnabled
 - LoadMode asyncLoadMode // readonly
 - bool asyncLoading // readonly
@@ -11467,6 +11470,7 @@ Properties:
 - String category // readonly
 - uint checksum // readonly
 - Node@[] children // readonly
+- Node@[] childrenByName // readonly
 - Component@[] components // readonly
 - DebugRenderer@ debugRenderer // readonly
 - Vector3 direction

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.1.72
+0.1.73