mirror of https://github.com/axmolengine/axmol.git
104 lines
3.1 KiB
Lua
104 lines
3.1 KiB
Lua
|
|
--------------------------------
|
|
-- @module FastTMXTiledMap
|
|
-- @extend Node
|
|
-- @parent_module cc
|
|
|
|
--------------------------------
|
|
-- @function [parent=#FastTMXTiledMap] setObjectGroups
|
|
-- @param self
|
|
-- @param #array_table array
|
|
|
|
--------------------------------
|
|
-- @function [parent=#FastTMXTiledMap] getProperty
|
|
-- @param self
|
|
-- @param #string str
|
|
-- @return Value#Value ret (return value: cc.Value)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#FastTMXTiledMap] setMapSize
|
|
-- @param self
|
|
-- @param #size_table size
|
|
|
|
--------------------------------
|
|
-- @function [parent=#FastTMXTiledMap] getObjectGroup
|
|
-- @param self
|
|
-- @param #string str
|
|
-- @return TMXObjectGroup#TMXObjectGroup ret (return value: cc.TMXObjectGroup)
|
|
|
|
--------------------------------
|
|
-- overload function: getObjectGroups()
|
|
--
|
|
-- overload function: getObjectGroups()
|
|
--
|
|
-- @function [parent=#FastTMXTiledMap] getObjectGroups
|
|
-- @param self
|
|
-- @return array_table#array_table ret (retunr value: array_table)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#FastTMXTiledMap] getTileSize
|
|
-- @param self
|
|
-- @return size_table#size_table ret (return value: size_table)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#FastTMXTiledMap] getMapSize
|
|
-- @param self
|
|
-- @return size_table#size_table ret (return value: size_table)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#FastTMXTiledMap] getProperties
|
|
-- @param self
|
|
-- @return map_table#map_table ret (return value: map_table)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#FastTMXTiledMap] getPropertiesForGID
|
|
-- @param self
|
|
-- @param #int int
|
|
-- @return Value#Value ret (return value: cc.Value)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#FastTMXTiledMap] setTileSize
|
|
-- @param self
|
|
-- @param #size_table size
|
|
|
|
--------------------------------
|
|
-- @function [parent=#FastTMXTiledMap] setProperties
|
|
-- @param self
|
|
-- @param #map_table map
|
|
|
|
--------------------------------
|
|
-- @function [parent=#FastTMXTiledMap] getLayer
|
|
-- @param self
|
|
-- @param #string str
|
|
-- @return FastTMXLayer#FastTMXLayer ret (return value: cc.FastTMXLayer)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#FastTMXTiledMap] getMapOrientation
|
|
-- @param self
|
|
-- @return int#int ret (return value: int)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#FastTMXTiledMap] setMapOrientation
|
|
-- @param self
|
|
-- @param #int int
|
|
|
|
--------------------------------
|
|
-- @function [parent=#FastTMXTiledMap] create
|
|
-- @param self
|
|
-- @param #string str
|
|
-- @return FastTMXTiledMap#FastTMXTiledMap ret (return value: cc.FastTMXTiledMap)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#FastTMXTiledMap] createWithXML
|
|
-- @param self
|
|
-- @param #string str
|
|
-- @param #string str
|
|
-- @return FastTMXTiledMap#FastTMXTiledMap ret (return value: cc.FastTMXTiledMap)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#FastTMXTiledMap] getDescription
|
|
-- @param self
|
|
-- @return string#string ret (return value: string)
|
|
|
|
return nil
|