Browse Source

Travis CI: API documentation update at 2016-05-02 17:47:52 UTC.
[ci package]

Commit: https://github.com/urho3d/Urho3D/commit/7fbf89b728783b3d3bda2709f953d652161799f3

Message: Add Clone() function to Animation. Expose Animation constructor in Lua.

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

+ 1 - 0
Docs/AngelScriptAPI.h

@@ -295,6 +295,7 @@ class Animation
 // Methods:
 // Methods:
 void AddTrigger(const AnimationTriggerPoint&);
 void AddTrigger(const AnimationTriggerPoint&);
 void AddTrigger(float, bool, const Variant&);
 void AddTrigger(float, bool, const Variant&);
+Animation Clone(const String& = String ( )) const;
 AnimationTrack CreateTrack(const String&);
 AnimationTrack CreateTrack(const String&);
 bool HasSubscribedToEvent(Object, const String&);
 bool HasSubscribedToEvent(Object, const String&);
 bool HasSubscribedToEvent(const String&);
 bool HasSubscribedToEvent(const String&);

+ 4 - 0
Docs/LuaScriptAPI.dox

@@ -317,6 +317,9 @@ Properties:
 
 
 Methods:
 Methods:
 
 
+- Animation() (GC)
+- Animation* new()
+- void delete()
 - void SetAnimationName(const String name)
 - void SetAnimationName(const String name)
 - void SetLength(float length)
 - void SetLength(float length)
 - AnimationTrack* CreateTrack(const String name)
 - AnimationTrack* CreateTrack(const String name)
@@ -327,6 +330,7 @@ Methods:
 - void AddTrigger(float time, bool timeIsNormalized, const Variant& data)
 - void AddTrigger(float time, bool timeIsNormalized, const Variant& data)
 - void RemoveTrigger(unsigned index)
 - void RemoveTrigger(unsigned index)
 - void RemoveAllTriggers()
 - void RemoveAllTriggers()
+- Animation* Clone(const String cloneName = String::EMPTY) const
 - const String GetAnimationName() const
 - const String GetAnimationName() const
 - float GetLength() const
 - float GetLength() const
 - unsigned GetNumTracks() const
 - unsigned GetNumTracks() const

+ 1 - 0
Docs/ScriptAPI.dox

@@ -2727,6 +2727,7 @@ Methods:
 
 
 - void AddTrigger(const AnimationTriggerPoint&)
 - void AddTrigger(const AnimationTriggerPoint&)
 - void AddTrigger(float, bool, const Variant&)
 - void AddTrigger(float, bool, const Variant&)
+- Animation@ Clone(const String& = String ( )) const
 - AnimationTrack@ CreateTrack(const String&)
 - AnimationTrack@ CreateTrack(const String&)
 - bool HasSubscribedToEvent(Object@, const String&)
 - bool HasSubscribedToEvent(Object@, const String&)
 - bool HasSubscribedToEvent(const String&)
 - bool HasSubscribedToEvent(const String&)

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.0.214
+0.0.215