summaryrefslogtreecommitdiff
path: root/meta/3rd/Cocos4.0/library/cc/TMXMapInfo.lua
diff options
context:
space:
mode:
authorCppCXY <812125110@qq.com>2024-02-22 20:29:13 +0800
committerCppCXY <812125110@qq.com>2024-02-22 20:29:13 +0800
commit9b6df71d97a70ee7179949ef9f15368cbf29dcbd (patch)
treebf7a7e62ed7c164a12bdce437c17262a5235bcec /meta/3rd/Cocos4.0/library/cc/TMXMapInfo.lua
parent483fe246b6ae8c25d433aa15e43f04f0e71a74d5 (diff)
parent3e6fd3ce1f2f0528336ded939d776a29bbfaf2eb (diff)
downloadlua-language-server-9b6df71d97a70ee7179949ef9f15368cbf29dcbd.zip
Merge branch 'master' of github.com:CppCXY/lua-language-server
Diffstat (limited to 'meta/3rd/Cocos4.0/library/cc/TMXMapInfo.lua')
m---------meta/3rd/Cocos4.00
-rw-r--r--meta/3rd/Cocos4.0/library/cc/TMXMapInfo.lua164
2 files changed, 0 insertions, 164 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/TMXMapInfo.lua b/meta/3rd/Cocos4.0/library/cc/TMXMapInfo.lua
deleted file mode 100644
index ffb02745..00000000
--- a/meta/3rd/Cocos4.0/library/cc/TMXMapInfo.lua
+++ /dev/null
@@ -1,164 +0,0 @@
----@meta
-
----@class cc.TMXMapInfo
-local TMXMapInfo={ }
-cc.TMXMapInfo=TMXMapInfo
-
-
-
-
----*
----@param currentString string
----@return self
-function TMXMapInfo:setCurrentString (currentString) end
----* / map hexsidelength
----@return int
-function TMXMapInfo:getHexSideLength () end
----*
----@param tileSize size_table
----@return self
-function TMXMapInfo:setTileSize (tileSize) end
----* / map orientation
----@return int
-function TMXMapInfo:getOrientation () end
----*
----@param groups array_table
----@return self
-function TMXMapInfo:setObjectGroups (groups) end
----*
----@param layers array_table
----@return self
-function TMXMapInfo:setLayers (layers) end
----* initializes parsing of an XML file, either a tmx (Map) file or tsx (Tileset) file
----@param xmlFilename string
----@return boolean
-function TMXMapInfo:parseXMLFile (xmlFilename) end
----* / parent element
----@return int
-function TMXMapInfo:getParentElement () end
----*
----@param fileName string
----@return self
-function TMXMapInfo:setTMXFileName (fileName) end
----*
----@param xmlString string
----@return boolean
-function TMXMapInfo:parseXMLString (xmlString) end
----@overload fun():self
----@overload fun():self
----@return array_table
-function TMXMapInfo:getLayers () end
----* / map staggeraxis
----@return int
-function TMXMapInfo:getStaggerAxis () end
----*
----@param hexSideLength int
----@return self
-function TMXMapInfo:setHexSideLength (hexSideLength) end
----* initializes a TMX format with a tmx file
----@param tmxFile string
----@return boolean
-function TMXMapInfo:initWithTMXFile (tmxFile) end
----* / parent GID
----@return int
-function TMXMapInfo:getParentGID () end
----@overload fun():self
----@overload fun():self
----@return array_table
-function TMXMapInfo:getTilesets () end
----*
----@param element int
----@return self
-function TMXMapInfo:setParentElement (element) end
----* initializes a TMX format with an XML string and a TMX resource path
----@param tmxString string
----@param resourcePath string
----@return boolean
-function TMXMapInfo:initWithXML (tmxString,resourcePath) end
----*
----@param gid int
----@return self
-function TMXMapInfo:setParentGID (gid) end
----* / layer attribs
----@return int
-function TMXMapInfo:getLayerAttribs () end
----* / tiles width & height
----@return size_table
-function TMXMapInfo:getTileSize () end
----*
----@return map_table
-function TMXMapInfo:getTileProperties () end
----* / is storing characters?
----@return boolean
-function TMXMapInfo:isStoringCharacters () end
----*
----@return string
-function TMXMapInfo:getExternalTilesetFileName () end
----@overload fun():self
----@overload fun():self
----@return array_table
-function TMXMapInfo:getObjectGroups () end
----*
----@return string
-function TMXMapInfo:getTMXFileName () end
----*
----@param staggerIndex int
----@return self
-function TMXMapInfo:setStaggerIndex (staggerIndex) end
----*
----@param properties map_table
----@return self
-function TMXMapInfo:setProperties (properties) end
----*
----@param orientation int
----@return self
-function TMXMapInfo:setOrientation (orientation) end
----*
----@param tileProperties map_table
----@return self
-function TMXMapInfo:setTileProperties (tileProperties) end
----*
----@param mapSize size_table
----@return self
-function TMXMapInfo:setMapSize (mapSize) end
----*
----@return string
-function TMXMapInfo:getCurrentString () end
----*
----@param storingCharacters boolean
----@return self
-function TMXMapInfo:setStoringCharacters (storingCharacters) end
----*
----@param staggerAxis int
----@return self
-function TMXMapInfo:setStaggerAxis (staggerAxis) end
----* / map width & height
----@return size_table
-function TMXMapInfo:getMapSize () end
----*
----@param tilesets array_table
----@return self
-function TMXMapInfo:setTilesets (tilesets) end
----@overload fun():self
----@overload fun():self
----@return map_table
-function TMXMapInfo:getProperties () end
----* / map stagger index
----@return int
-function TMXMapInfo:getStaggerIndex () end
----*
----@param layerAttribs int
----@return self
-function TMXMapInfo:setLayerAttribs (layerAttribs) end
----* creates a TMX Format with a tmx file
----@param tmxFile string
----@return self
-function TMXMapInfo:create (tmxFile) end
----* creates a TMX Format with an XML string and a TMX resource path
----@param tmxString string
----@param resourcePath string
----@return self
-function TMXMapInfo:createWithXML (tmxString,resourcePath) end
----* js ctor
----@return self
-function TMXMapInfo:TMXMapInfo () end \ No newline at end of file