Browse Source

Travis CI: API documentation update at 2015-11-30 12:43:54 UTC.
[ci package]

Commit: https://github.com/urho3d/Urho3D/commit/23cdecd5dbf22ee5fec46dc49b5f9ee9ba5ba174

Message: Merge pull request #1064 from cosmy1/patch-1

Add missing IntRect & IntVector2 getters and setters in XMLElement

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

+ 4 - 0
Docs/AngelScriptAPI.h

@@ -12670,6 +12670,8 @@ Color GetColor(const String&) const;
 double GetDouble(const String&) const;
 double GetDouble(const String&) const;
 float GetFloat(const String&) const;
 float GetFloat(const String&) const;
 int GetInt(const String&) const;
 int GetInt(const String&) const;
+IntRect GetIntRect(const String&) const;
+IntVector2 GetIntVector2(const String&) const;
 Matrix3 GetMatrix3(const String&) const;
 Matrix3 GetMatrix3(const String&) const;
 Matrix3x4 GetMatrix3x4(const String&) const;
 Matrix3x4 GetMatrix3x4(const String&) const;
 Matrix4 GetMatrix4(const String&) const;
 Matrix4 GetMatrix4(const String&) const;
@@ -12704,6 +12706,8 @@ bool SetColor(const String&, const Color&);
 bool SetDouble(const String&, double);
 bool SetDouble(const String&, double);
 bool SetFloat(const String&, float);
 bool SetFloat(const String&, float);
 bool SetInt(const String&, int);
 bool SetInt(const String&, int);
+bool SetIntRect(const String&, const IntRect&);
+bool SetIntVector2(const String&, const IntVector2&);
 bool SetMatrix3(const String&, const Matrix3&);
 bool SetMatrix3(const String&, const Matrix3&);
 bool SetMatrix3x4(const String&, const Matrix3x4&);
 bool SetMatrix3x4(const String&, const Matrix3x4&);
 bool SetMatrix4(const String&, const Matrix4&);
 bool SetMatrix4(const String&, const Matrix4&);

+ 4 - 0
Docs/ScriptAPI.dox

@@ -13511,6 +13511,8 @@ Methods:
 - double GetDouble(const String&) const
 - double GetDouble(const String&) const
 - float GetFloat(const String&) const
 - float GetFloat(const String&) const
 - int GetInt(const String&) const
 - int GetInt(const String&) const
+- IntRect GetIntRect(const String&) const
+- IntVector2 GetIntVector2(const String&) const
 - Matrix3 GetMatrix3(const String&) const
 - Matrix3 GetMatrix3(const String&) const
 - Matrix3x4 GetMatrix3x4(const String&) const
 - Matrix3x4 GetMatrix3x4(const String&) const
 - Matrix4 GetMatrix4(const String&) const
 - Matrix4 GetMatrix4(const String&) const
@@ -13545,6 +13547,8 @@ Methods:
 - bool SetDouble(const String&, double)
 - bool SetDouble(const String&, double)
 - bool SetFloat(const String&, float)
 - bool SetFloat(const String&, float)
 - bool SetInt(const String&, int)
 - bool SetInt(const String&, int)
+- bool SetIntRect(const String&, const IntRect&)
+- bool SetIntVector2(const String&, const IntVector2&)
 - bool SetMatrix3(const String&, const Matrix3&)
 - bool SetMatrix3(const String&, const Matrix3&)
 - bool SetMatrix3x4(const String&, const Matrix3x4&)
 - bool SetMatrix3x4(const String&, const Matrix3x4&)
 - bool SetMatrix4(const String&, const Matrix4&)
 - bool SetMatrix4(const String&, const Matrix4&)

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.0.174
+0.0.175