瀏覽代碼

Travis CI: API documentation update at 2016-04-10 12:46:31 UTC.
[ci package]

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

Message: For Travis CI - attempt to free up more space on OSX build environment.

urho3d-travis-ci 9 年之前
父節點
當前提交
63c4cfa443
共有 3 個文件被更改,包括 5 次插入9 次删除
  1. 2 4
      Docs/AngelScriptAPI.h
  2. 2 4
      Docs/ScriptAPI.dox
  3. 1 1
      Source/Urho3D/.soversion

+ 2 - 4
Docs/AngelScriptAPI.h

@@ -296,8 +296,6 @@ class Animation
 void AddTrigger(const AnimationTriggerPoint&);
 void AddTrigger(float, bool, const Variant&);
 AnimationTrack CreateTrack(const String&);
-AnimationTrack GetTrack(StringHash);
-AnimationTrack GetTrack(const String&);
 bool HasSubscribedToEvent(Object, const String&);
 bool HasSubscribedToEvent(const String&);
 bool Load(File);
@@ -324,7 +322,7 @@ uint numTriggers;
 /* readonly */
 int refs;
 /* readonly */
-Array<String> trackNames;
+Array<AnimationTrack> tracks;
 Array<AnimationTriggerPoint> triggers;
 /* readonly */
 StringHash type;
@@ -486,7 +484,7 @@ void AddTime(float);
 void AddWeight(float);
 void Apply();
 float GetBoneWeight(StringHash) const;
-float GetBoneWeight(const String&) const;
+float GetBoneWeight(uint) const;
 uint GetTrackIndex(StringHash) const;
 uint GetTrackIndex(const String&) const;
 void SetBoneWeight(StringHash, float, bool = false);

+ 2 - 4
Docs/ScriptAPI.dox

@@ -2726,8 +2726,6 @@ Methods:
 - void AddTrigger(const AnimationTriggerPoint&)
 - void AddTrigger(float, bool, const Variant&)
 - AnimationTrack@ CreateTrack(const String&)
-- AnimationTrack@ GetTrack(StringHash)
-- AnimationTrack@ GetTrack(const String&)
 - bool HasSubscribedToEvent(Object@, const String&)
 - bool HasSubscribedToEvent(const String&)
 - bool Load(File@)
@@ -2750,7 +2748,7 @@ Properties:
 - uint numTracks // readonly
 - uint numTriggers
 - int refs // readonly
-- String[]@ trackNames // readonly
+- AnimationTrack@[] tracks // readonly
 - AnimationTriggerPoint[] triggers
 - StringHash type // readonly
 - String typeName // readonly
@@ -2898,7 +2896,7 @@ Methods:
 - void AddWeight(float)
 - void Apply()
 - float GetBoneWeight(StringHash) const
-- float GetBoneWeight(const String&) const
+- float GetBoneWeight(uint) const
 - uint GetTrackIndex(StringHash) const
 - uint GetTrackIndex(const String&) const
 - void SetBoneWeight(StringHash, float, bool = false)

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.0.209
+0.0.210