Browse Source

Travis CI: API documentation update at 2014-06-03 11:10:01 UTC.
[ci package]

urho3d-travis-ci 11 years ago
parent
commit
1926a62c93
3 changed files with 21 additions and 0 deletions
  1. 4 0
      Docs/AngelScriptAPI.h
  2. 10 0
      Docs/LuaScriptAPI.dox
  3. 7 0
      Docs/ScriptAPI.dox

+ 4 - 0
Docs/AngelScriptAPI.h

@@ -195,6 +195,7 @@ bool SetAttribute(const String&, const Variant&);
 void SetAttributeAnimation(const String&, ValueAnimation, WrapMode = WM_LOOP, float = 1.0f);
 void SetAttributeAnimationSpeed(const String&, float);
 void SetAttributeAnimationWrapMode(const String&, WrapMode);
+void SetFlip(bool, bool);
 
 // Properties:
 String animation;
@@ -213,10 +214,13 @@ BoundingBox boundingBox;
 bool castShadows;
 /* readonly */
 String category;
+Color color;
 float drawDistance;
 bool enabled;
 /* readonly */
 bool enabledEffective;
+bool flipX;
+bool flipY;
 /* readonly */
 uint id;
 /* readonly */

+ 10 - 0
Docs/LuaScriptAPI.dox

@@ -75,6 +75,10 @@ Methods:
 - void SetLayer(int layer)
 - void SetOrderInLayer(int orderInLayer)
 - void SetBlendMode(BlendMode mode)
+- void SetFlip(bool flipX, bool flipY)
+- void SetFlipX(bool flipX)
+- void SetFlipY(bool flipY)
+- void SetColor(const Color& color)
 - void SetSpeed(float speed)
 - void SetAnimation(const String name)
 - void SetAnimation(AnimationSet2D* animationSet, const String name)
@@ -82,6 +86,9 @@ Methods:
 - int GetLayer() const
 - int GetOrderInLayer() const
 - BlendMode GetBlendMode() const
+- bool GetFlipX() const
+- bool GetFlipY() const
+- const Color& GetColor() const
 - float GetSpeed() const
 - AnimationSet2D* GetAnimationSet() const
 - const String GetAnimation() const
@@ -91,6 +98,9 @@ Properties:
 - int layer
 - int orderInLayer
 - BlendMode blendMode
+- bool flipX
+- bool flipY
+- Color& color
 - float speed
 - AnimationSet2D* animationSet
 - String animation

+ 7 - 0
Docs/ScriptAPI.dox

@@ -644,6 +644,9 @@ namespace Urho3D
 - %Layer : int
 - %Order %in %Layer : int
 - %Blend %Mode : int
+- %Flip X : bool
+- %Flip Y : bool
+- %Color : Color
 - %Speed : float
 - %Animation %Set : ResourceRef
 - %Animation : String
@@ -2133,6 +2136,7 @@ Methods:
 - void SetAttributeAnimation(const String&, ValueAnimation@, WrapMode = WM_LOOP, float = 1.0f)
 - void SetAttributeAnimationSpeed(const String&, float)
 - void SetAttributeAnimationWrapMode(const String&, WrapMode)
+- void SetFlip(bool, bool)
 
 Properties:
 
@@ -2147,9 +2151,12 @@ Properties:
 - BoundingBox boundingBox // readonly
 - bool castShadows
 - String category // readonly
+- Color color
 - float drawDistance
 - bool enabled
 - bool enabledEffective // readonly
+- bool flipX
+- bool flipY
 - uint id // readonly
 - bool inView // readonly
 - int layer