Browse Source

Travis CI: API documentation update at 2015-05-19 14:37:15 UTC.
[ci package]

Commit: https://github.com/urho3d/Urho3D/commit/bb03eb0f123bfc5e52c3176d1f7f9f14ae1675b7

Message: Moved the transformation of AngelScript function name to void signature to GetFunction() / GetMethod() to allow all of execute, delayed execute and event subscription to handle either a function name or full signature. Added HasMethod() to ScriptInstance to allow checking for existence of function (avoid error log print in cases where an "optional" function is being called on a script object.) Updated scripting documentation.

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

+ 1 - 0
Docs/AngelScriptAPI.h

@@ -8294,6 +8294,7 @@ float GetAttributeAnimationSpeed(const String&) const;
 WrapMode GetAttributeAnimationWrapMode(const String&) const;
 WrapMode GetAttributeAnimationWrapMode(const String&) const;
 Variant GetAttributeDefault(const String&) const;
 Variant GetAttributeDefault(const String&) const;
 bool GetInterceptNetworkUpdate(const String&) const;
 bool GetInterceptNetworkUpdate(const String&) const;
+bool HasMethod(const String&) const;
 bool Load(File, bool = false);
 bool Load(File, bool = false);
 bool Load(VectorBuffer&, bool = false);
 bool Load(VectorBuffer&, bool = false);
 bool LoadXML(const XMLElement&, bool = false);
 bool LoadXML(const XMLElement&, bool = false);

+ 1 - 0
Docs/ScriptAPI.dox

@@ -9543,6 +9543,7 @@ Methods:
 - WrapMode GetAttributeAnimationWrapMode(const String&) const
 - WrapMode GetAttributeAnimationWrapMode(const String&) const
 - Variant GetAttributeDefault(const String&) const
 - Variant GetAttributeDefault(const String&) const
 - bool GetInterceptNetworkUpdate(const String&) const
 - bool GetInterceptNetworkUpdate(const String&) const
+- bool HasMethod(const String&) const
 - bool Load(File@, bool = false)
 - bool Load(File@, bool = false)
 - bool Load(VectorBuffer&, bool = false)
 - bool Load(VectorBuffer&, bool = false)
 - bool LoadXML(const XMLElement&, bool = false)
 - bool LoadXML(const XMLElement&, bool = false)

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.0.104
+0.0.105