Browse Source

Travis CI: API documentation update at 2016-11-07 20:21:46 UTC.
[ci package]

Commit: https://github.com/urho3d/Urho3D/commit/10e97395e3e9debac9df9be38420c16b0d039ee6

Message: Add contributor credit.

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

+ 10 - 0
Docs/AngelScriptAPI.h

@@ -246,6 +246,7 @@ String category;
 Color color;
 Material customMaterial;
 float drawDistance;
+Rect drawRect;
 bool enabled;
 /* readonly */
 bool enabledEffective;
@@ -277,11 +278,14 @@ uint shadowMask;
 float speed;
 Sprite2D sprite;
 bool temporary;
+Rect textureRect;
 /* readonly */
 StringHash type;
 /* readonly */
 String typeName;
+bool useDrawRect;
 bool useHotSpot;
+bool useTextureRect;
 uint viewMask;
 /* readonly */
 int weakRefs;
@@ -11357,6 +11361,7 @@ String category;
 Color color;
 Material customMaterial;
 float drawDistance;
+Rect drawRect;
 bool enabled;
 /* readonly */
 bool enabledEffective;
@@ -11385,11 +11390,14 @@ float shadowDistance;
 uint shadowMask;
 Sprite2D sprite;
 bool temporary;
+Rect textureRect;
 /* readonly */
 StringHash type;
 /* readonly */
 String typeName;
+bool useDrawRect;
 bool useHotSpot;
+bool useTextureRect;
 uint viewMask;
 /* readonly */
 int weakRefs;
@@ -13266,6 +13274,7 @@ const Matrix3& GetMatrix3() const;
 const Matrix3x4& GetMatrix3x4() const;
 const Matrix4& GetMatrix4() const;
 const Quaternion& GetQuaternion() const;
+const Rect& GetRect() const;
 const ResourceRef& GetResourceRef() const;
 const ResourceRefList& GetResourceRefList() const;
 const String& GetString() const;
@@ -14822,6 +14831,7 @@ VAR_MATRIX3X4,
 VAR_MATRIX4,
 VAR_DOUBLE,
 VAR_STRINGVECTOR,
+VAR_RECT,
 };
 
 enum VertexElementSemantic

+ 14 - 0
Docs/LuaScriptAPI.dox

@@ -6084,6 +6084,10 @@ Methods:
 - void SetAlpha(float alpha)
 - void SetUseHotSpot(bool useHotSpot)
 - void SetHotSpot(const Vector2& hotspot)
+- void SetUseDrawRect(bool useDrawRect)
+- void SetDrawRect(const Rect& rect)
+- void SetUseTextureRect(bool useTextureRect)
+- void SetTextureRect(const Rect& rect)
 - void SetCustomMaterial(Material* customMaterial)
 - Sprite2D* GetSprite() const
 - BlendMode GetBlendMode() const
@@ -6093,6 +6097,10 @@ Methods:
 - float GetAlpha() const
 - bool GetUseHotSpot() const
 - const Vector2& GetHotSpot() const
+- bool GetUseDrawRect() const
+- const Rect& GetDrawRect() const
+- bool GetUseTextureRect() const
+- const Rect& GetTextureRect() const
 - Material* GetCustomMaterial() const
 
 Properties:
@@ -6106,6 +6114,10 @@ Properties:
 - bool useHotSpot
 - Vector2 hotSpot
 - Material* customMaterial
+- Rect drawRect
+- bool useDrawRect
+- Rect textureRect
+- bool useTextureRect
 
 <a name="Class_StringHash"></a>
 ### StringHash
@@ -7129,6 +7141,7 @@ Methods:
 - const Vector<Variant>& GetVariantVector() const
 - const VariantMap& GetVariantMap() const
 - const Vector<String>& GetStringVector() const
+- const Rect& GetRect() const
 - const IntRect& GetIntRect() const
 - const IntVector2& GetIntVector2() const
 - RefCounted* GetPtr(const char* type) const
@@ -8263,6 +8276,7 @@ Properties:
 - int VAR_MATRIX4
 - int VAR_DOUBLE
 - int VAR_STRINGVECTOR
+- int VAR_RECT
 - int MAX_VAR_TYPES
 
 ### VertexElementSemantic

+ 22 - 0
Docs/ScriptAPI.dox

@@ -915,6 +915,12 @@ namespace Urho3D
 - %Flip Y : bool
 - %Color : Color
 - %Custom %material : ResourceRef
+- %Hot %Spot : Vector2
+- %Use %Hot %Spot : bool
+- %Draw %Rectangle : Rect
+- %Use %Draw %Rectangle : bool
+- %Texture %Rectangle : Rect
+- %Use %Texture %Rectangle : bool
 - %Speed : float
 - %Entity : String
 - %Animation %Set : ResourceRef
@@ -2201,6 +2207,12 @@ namespace Urho3D
 - %Flip Y : bool
 - %Color : Color
 - %Custom %material : ResourceRef
+- %Hot %Spot : Vector2
+- %Use %Hot %Spot : bool
+- %Draw %Rectangle : Rect
+- %Use %Draw %Rectangle : bool
+- %Texture %Rectangle : Rect
+- %Use %Texture %Rectangle : bool
 
 ### Terrain
 - %Is %Enabled : bool
@@ -2971,6 +2983,7 @@ Properties:
 - Color color
 - Material@ customMaterial
 - float drawDistance
+- Rect drawRect
 - bool enabled
 - bool enabledEffective // readonly
 - String entity
@@ -2996,9 +3009,12 @@ Properties:
 - float speed
 - Sprite2D@ sprite
 - bool temporary
+- Rect textureRect
 - StringHash type // readonly
 - String typeName // readonly
+- bool useDrawRect
 - bool useHotSpot
+- bool useTextureRect
 - uint viewMask
 - int weakRefs // readonly
 - BoundingBox worldBoundingBox // readonly
@@ -12800,6 +12816,7 @@ Properties:
 - Color color
 - Material@ customMaterial
 - float drawDistance
+- Rect drawRect
 - bool enabled
 - bool enabledEffective // readonly
 - bool flipX
@@ -12822,9 +12839,12 @@ Properties:
 - uint shadowMask
 - Sprite2D@ sprite
 - bool temporary
+- Rect textureRect
 - StringHash type // readonly
 - String typeName // readonly
+- bool useDrawRect
 - bool useHotSpot
+- bool useTextureRect
 - uint viewMask
 - int weakRefs // readonly
 - BoundingBox worldBoundingBox // readonly
@@ -14424,6 +14444,7 @@ Methods:
 - const Matrix3x4& GetMatrix3x4() const
 - const Matrix4& GetMatrix4() const
 - const Quaternion& GetQuaternion() const
+- const Rect& GetRect() const
 - const ResourceRef& GetResourceRef() const
 - const ResourceRefList& GetResourceRefList() const
 - const String& GetString() const
@@ -15890,6 +15911,7 @@ Properties:
 - VAR_MATRIX4
 - VAR_DOUBLE
 - VAR_STRINGVECTOR
+- VAR_RECT
 
 
 ### VertexElementSemantic

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.1.29
+0.1.30