Browse Source

Travis CI: API documentation update at 2014-04-12 03:33:38 UTC.
[ci package]

urho3d-travis-ci 11 years ago
parent
commit
60b09d480a
3 changed files with 27 additions and 0 deletions
  1. 8 0
      Docs/AngelScriptAPI.h
  2. 11 0
      Docs/LuaScriptAPI.dox
  3. 8 0
      Docs/ScriptAPI.dox

+ 8 - 0
Docs/AngelScriptAPI.h

@@ -487,11 +487,13 @@ void SetKeyFrame(float, const Variant&);
 ShortStringHash baseType;
 ShortStringHash baseType;
 /* readonly */
 /* readonly */
 String category;
 String category;
+InterpMethod interpolationMethod;
 /* readonly */
 /* readonly */
 uint memoryUse;
 uint memoryUse;
 String name;
 String name;
 /* readonly */
 /* readonly */
 int refs;
 int refs;
+float splineTension;
 /* readonly */
 /* readonly */
 ShortStringHash type;
 ShortStringHash type;
 /* readonly */
 /* readonly */
@@ -11013,6 +11015,12 @@ HTTP_OPEN,
 HTTP_CLOSED,
 HTTP_CLOSED,
 };
 };
 
 
+enum InterpMethod
+{
+IM_LINEAR,
+IM_SPLINE,
+};
+
 enum InterpolationMode
 enum InterpolationMode
 {
 {
 BEZIER_CURVE,
 BEZIER_CURVE,

+ 11 - 0
Docs/LuaScriptAPI.dox

@@ -240,14 +240,20 @@ Methods:
 - AttributeAnimation() (GC)
 - AttributeAnimation() (GC)
 - AttributeAnimation* new()
 - AttributeAnimation* new()
 - void delete()
 - void delete()
+- void SetInterpolationMethod(InterpMethod method)
+- void SetSplineTension(float tension)
 - void SetValueType(VariantType valueType)
 - void SetValueType(VariantType valueType)
 - bool SetKeyFrame(float time, const Variant& value)
 - bool SetKeyFrame(float time, const Variant& value)
 - void SetEventFrame(float time, const StringHash& eventType)
 - void SetEventFrame(float time, const StringHash& eventType)
 - void SetEventFrame(float time, const StringHash& eventType, const VariantMap& eventData)
 - void SetEventFrame(float time, const StringHash& eventType, const VariantMap& eventData)
+- InterpMethod GetInterpolationMethod() const
+- float GetSplineTension() const
 - VariantType GetValueType() const
 - VariantType GetValueType() const
 
 
 Properties:
 Properties:
 
 
+- InterpMethod interpolationMethod
+- float splineTension
 - VariantType valueType
 - VariantType valueType
 
 
 ### Audio : Object
 ### Audio : Object
@@ -6060,6 +6066,11 @@ Properties:
 - int HTTP_OPEN
 - int HTTP_OPEN
 - int HTTP_CLOSED
 - int HTTP_CLOSED
 
 
+### InterpMethod
+
+- int IM_LINEAR
+- int IM_SPLINE
+
 ### InterpolationMode
 ### InterpolationMode
 
 
 - int BEZIER_CURVE
 - int BEZIER_CURVE

+ 8 - 0
Docs/ScriptAPI.dox

@@ -410,9 +410,11 @@ Properties:
 
 
 - ShortStringHash baseType // readonly
 - ShortStringHash baseType // readonly
 - String category // readonly
 - String category // readonly
+- InterpMethod interpolationMethod
 - uint memoryUse // readonly
 - uint memoryUse // readonly
 - String name
 - String name
 - int refs // readonly
 - int refs // readonly
+- float splineTension
 - ShortStringHash type // readonly
 - ShortStringHash type // readonly
 - String typeName // readonly
 - String typeName // readonly
 - uint useTimer // readonly
 - uint useTimer // readonly
@@ -9328,6 +9330,12 @@ Properties:
 - HTTP_CLOSED
 - HTTP_CLOSED
 
 
 
 
+### InterpMethod
+
+- IM_LINEAR
+- IM_SPLINE
+
+
 ### InterpolationMode
 ### InterpolationMode
 
 
 - BEZIER_CURVE
 - BEZIER_CURVE