Ver código fonte

Travis CI: API documentation update at 2014-08-21 13:13:48 UTC.
[ci package]

urho3d-travis-ci 11 anos atrás
pai
commit
10efcd8c6a
4 arquivos alterados com 54 adições e 24 exclusões
  1. 15 8
      Docs/AngelScriptAPI.h
  2. 22 10
      Docs/LuaScriptAPI.dox
  3. 16 5
      Docs/ScriptAPI.dox
  4. 1 1
      Source/Engine/.soversion

+ 15 - 8
Docs/AngelScriptAPI.h

@@ -10130,10 +10130,10 @@ bool enabled;
 /* readonly */
 bool enabledEffective;
 /* readonly */
-int height;
-/* readonly */
 uint id;
 /* readonly */
+TileMapInfo2D info;
+/* readonly */
 Node node;
 /* readonly */
 uint numAttributes;
@@ -10141,14 +10141,8 @@ uint numAttributes;
 uint numLayers;
 ObjectAnimation objectAnimation;
 /* readonly */
-Orientation2D orientation;
-/* readonly */
 int refs;
 bool temporary;
-/* readonly */
-float tileHeight;
-/* readonly */
-float tileWidth;
 TmxFile2D tmxFile;
 /* readonly */
 StringHash type;
@@ -10156,7 +10150,20 @@ StringHash type;
 String typeName;
 /* readonly */
 int weakRefs;
+};
+
+class TileMapInfo2D
+{
+
+// Properties:
+int height;
 /* readonly */
+float mapHeight;
+/* readonly */
+float mapWidth;
+Orientation2D orientation;
+float tileHeight;
+float tileWidth;
 int width;
 };
 

+ 22 - 10
Docs/LuaScriptAPI.dox

@@ -175,6 +175,7 @@ namespace Urho3D
 <a href="#Class_TextureFrame"><b>TextureFrame</b></a>
 <a href="#Class_Tile2D"><b>Tile2D</b></a>
 <a href="#Class_TileMap2D"><b>TileMap2D</b></a>
+<a href="#Class_TileMapInfo2D"><b>TileMapInfo2D</b></a>
 <a href="#Class_TileMapLayer2D"><b>TileMapLayer2D</b></a>
 <a href="#Class_TileObject2D"><b>TileObject2D</b></a>
 <a href="#Class_Time"><b>Time</b></a>
@@ -5526,24 +5527,35 @@ Methods:
 
 - void SetTmxFile(TmxFile2D* tmxFile)
 - TmxFile2D* GetTmxFile() const
-- Orientation2D GetOrientation() const
-- int GetWidth() const
-- int GetHeight() const
-- float GetTileWidth() const
-- float GetTileHeight() const
+- const TileMapInfo2D& GetInfo() const
 - unsigned GetNumLayers() const
 - TileMapLayer2D* GetLayer(unsigned index) const
 
 Properties:
 
 - TmxFile2D* tmxFile
-- Orientation2D orientation (readonly)
-- int width (readonly)
-- int height (readonly)
-- float tileWidth (readonly)
-- float tileHeight (readonly)
+- TileMapInfo2D& info (readonly)
 - unsigned numLayers (readonly)
 
+<a name="Class_TileMapInfo2D"></a>
+### TileMapInfo2D
+
+
+Methods:
+
+- float GetMapWidth() const
+- float GetMapHeight() const
+
+Properties:
+
+- Orientation2D orientation
+- int width
+- int height
+- float tileWidth
+- float tileHeight
+- float mapWidth (readonly)
+- float mapHeight (readonly)
+
 <a name="Class_TileMapLayer2D"></a>
 ### TileMapLayer2D : Component
 

+ 16 - 5
Docs/ScriptAPI.dox

@@ -2139,6 +2139,7 @@ namespace Urho3D
 <a href="#Class_TextureFrame"><b>TextureFrame</b></a>
 <a href="#Class_Tile2D"><b>Tile2D</b></a>
 <a href="#Class_TileMap2D"><b>TileMap2D</b></a>
+<a href="#Class_TileMapInfo2D"><b>TileMapInfo2D</b></a>
 <a href="#Class_TileMapLayer2D"><b>TileMapLayer2D</b></a>
 <a href="#Class_TileObject2D"><b>TileObject2D</b></a>
 <a href="#Class_Time"><b>Time</b></a>
@@ -10914,22 +10915,32 @@ Properties:
 - String category // readonly
 - bool enabled
 - bool enabledEffective // readonly
-- int height // readonly
 - uint id // readonly
+- TileMapInfo2D@ info // readonly
 - Node@ node // readonly
 - uint numAttributes // readonly
 - uint numLayers // readonly
 - ObjectAnimation@ objectAnimation
-- Orientation2D orientation // readonly
 - int refs // readonly
 - bool temporary
-- float tileHeight // readonly
-- float tileWidth // readonly
 - TmxFile2D@ tmxFile
 - StringHash type // readonly
 - String typeName // readonly
 - int weakRefs // readonly
-- int width // readonly
+
+<a name="Class_TileMapInfo2D"></a>
+
+### TileMapInfo2D
+
+Properties:
+
+- int height
+- float mapHeight // readonly
+- float mapWidth // readonly
+- Orientation2D orientation
+- float tileHeight
+- float tileWidth
+- int width
 
 <a name="Class_TileMapLayer2D"></a>
 

+ 1 - 1
Source/Engine/.soversion

@@ -1 +1 @@
-0.0.5
+0.0.6