summaryrefslogtreecommitdiff
path: root/meta/3rd/Cocos4.0/library/cc/TileMapAtlas.lua
diff options
context:
space:
mode:
Diffstat (limited to 'meta/3rd/Cocos4.0/library/cc/TileMapAtlas.lua')
m---------meta/3rd/Cocos4.00
-rw-r--r--meta/3rd/Cocos4.0/library/cc/TileMapAtlas.lua42
2 files changed, 0 insertions, 42 deletions
diff --git a/meta/3rd/Cocos4.0 b/meta/3rd/Cocos4.0
new file mode 160000
+Subproject c0b2259e0d367561fd4563ae114b029b4dfe3a8
diff --git a/meta/3rd/Cocos4.0/library/cc/TileMapAtlas.lua b/meta/3rd/Cocos4.0/library/cc/TileMapAtlas.lua
deleted file mode 100644
index ba326bb0..00000000
--- a/meta/3rd/Cocos4.0/library/cc/TileMapAtlas.lua
+++ /dev/null
@@ -1,42 +0,0 @@
----@meta
-
----@class cc.TileMapAtlas :cc.AtlasNode
-local TileMapAtlas={ }
-cc.TileMapAtlas=TileMapAtlas
-
-
-
-
----* initializes a TileMap with a tile file (atlas) with a map file and the width and height of each tile in points.<br>
----* The file will be loaded using the TextureMgr.
----@param tile string
----@param mapFile string
----@param tileWidth int
----@param tileHeight int
----@return boolean
-function TileMapAtlas:initWithTileFile (tile,mapFile,tileWidth,tileHeight) end
----* dealloc the map from memory
----@return self
-function TileMapAtlas:releaseMap () end
----* Returns a tile from position x,y.<br>
----* For the moment only channel R is used
----@param position vec2_table
----@return color3b_table
-function TileMapAtlas:getTileAt (position) end
----* sets a tile at position x,y.<br>
----* For the moment only channel R is used
----@param tile color3b_table
----@param position vec2_table
----@return self
-function TileMapAtlas:setTile (tile,position) end
----* creates a TileMap with a tile file (atlas) with a map file and the width and height of each tile in points.<br>
----* The tile file will be loaded using the TextureMgr.
----@param tile string
----@param mapFile string
----@param tileWidth int
----@param tileHeight int
----@return self
-function TileMapAtlas:create (tile,mapFile,tileWidth,tileHeight) end
----* js ctor
----@return self
-function TileMapAtlas:TileMapAtlas () end \ No newline at end of file