Browse Source

Travis CI: API documentation update at 2015-05-22 06:08:11 UTC.
[ci package]

Commit: https://github.com/urho3d/Urho3D/commit/44d5d21bbe72fc867036bda1e39b9547784d7e0e

Message: Exposed Node::GetComponents(), Node::GetChildren() and Node::GetChildrenWithComponent() to lua

urho3d-travis-ci 10 years ago
parent
commit
24e11c6b6c
2 changed files with 4 additions and 1 deletions
  1. 3 0
      Docs/LuaScriptAPI.dox
  2. 1 1
      Source/Urho3D/.soversion

+ 3 - 0
Docs/LuaScriptAPI.dox

@@ -3645,6 +3645,9 @@ Methods:
 - const Variant& GetVar(StringHash key) const
 - const VariantMap& GetVars() const
 - Component* GetComponent(const String type) const
+- const PODVector<Component*>& GetComponents(const String type, bool recursive = false)
+- const PODVector<Node*>& GetChildren(bool recursive = false)
+- const PODVector<Node*>& GetChildrenWithComponent(const String type, bool recursive = false)
 - bool Load(Deserializer& source, SceneResolver& resolver, bool loadChildren = true, bool rewriteIDs = false, CreateMode mode = REPLICATED)
 - bool LoadXML(const XMLElement& source, SceneResolver& resolver, bool loadChildren = true, bool rewriteIDs = false, CreateMode mode = REPLICATED)
 - Node* CreateChild(unsigned id, CreateMode mode)

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.0.106
+0.0.107