axmol/cocos/scripting/lua-bindings/auto/api/TMXTiledMap.lua

159 lines
5.4 KiB
Lua
Raw Normal View History

2014-03-10 14:04:58 +08:00
--------------------------------
-- @module TMXTiledMap
-- @extend Node
-- @parent_module cc
2014-03-10 14:04:58 +08:00
--------------------------------
-- Set the object groups. <br>
-- param groups The object groups.
2014-03-10 14:04:58 +08:00
-- @function [parent=#TMXTiledMap] setObjectGroups
-- @param self
-- @param #array_table groups
-- @return TMXTiledMap#TMXTiledMap self (return value: cc.TMXTiledMap)
2014-03-10 14:04:58 +08:00
--------------------------------
-- Return the value for the specific property name. <br>
-- param propertyName The specific property name.<br>
-- return Return the value for the specific property name.
2014-03-10 14:04:58 +08:00
-- @function [parent=#TMXTiledMap] getProperty
-- @param self
-- @param #string propertyName
2014-03-10 14:04:58 +08:00
-- @return Value#Value ret (return value: cc.Value)
--------------------------------
-- Set the map's size property measured in tiles. <br>
-- param mapSize The map's size property measured in tiles.
2014-03-10 14:04:58 +08:00
-- @function [parent=#TMXTiledMap] setMapSize
-- @param self
-- @param #size_table mapSize
-- @return TMXTiledMap#TMXTiledMap self (return value: cc.TMXTiledMap)
2014-03-10 14:04:58 +08:00
--------------------------------
-- Return the TMXObjectGroup for the specific group. <br>
-- param groupName The group Name.<br>
-- return A Type of TMXObjectGroup.
2014-03-10 14:04:58 +08:00
-- @function [parent=#TMXTiledMap] getObjectGroup
-- @param self
-- @param #string groupName
2014-03-10 14:04:58 +08:00
-- @return TMXObjectGroup#TMXObjectGroup ret (return value: cc.TMXObjectGroup)
--------------------------------
-- @overload self
-- @overload self
2014-03-10 14:04:58 +08:00
-- @function [parent=#TMXTiledMap] getObjectGroups
-- @param self
-- @return array_table#array_table ret (return value: array_table)
2014-03-10 14:04:58 +08:00
--------------------------------
-- initializes a TMX Tiled Map with a TMX formatted XML string and a path to TMX resources
-- @function [parent=#TMXTiledMap] initWithXML
-- @param self
-- @param #string tmxString
-- @param #string resourcePath
-- @return bool#bool ret (return value: bool)
--------------------------------
-- initializes a TMX Tiled Map with a TMX file
-- @function [parent=#TMXTiledMap] initWithTMXFile
-- @param self
-- @param #string tmxFile
-- @return bool#bool ret (return value: bool)
--------------------------------
-- The tiles's size property measured in pixels. <br>
-- return The tiles's size property measured in pixels.
2014-03-10 14:04:58 +08:00
-- @function [parent=#TMXTiledMap] getTileSize
-- @param self
-- @return size_table#size_table ret (return value: size_table)
--------------------------------
-- The map's size property measured in tiles. <br>
-- return The map's size property measured in tiles.
2014-03-10 14:04:58 +08:00
-- @function [parent=#TMXTiledMap] getMapSize
-- @param self
-- @return size_table#size_table ret (return value: size_table)
--------------------------------
-- Properties. <br>
-- return Properties.
2014-03-10 14:04:58 +08:00
-- @function [parent=#TMXTiledMap] getProperties
-- @param self
-- @return map_table#map_table ret (return value: map_table)
--------------------------------
-- Set the tiles's size property measured in pixels. <br>
-- param tileSize The tiles's size property measured in pixels.
2014-03-10 14:04:58 +08:00
-- @function [parent=#TMXTiledMap] setTileSize
-- @param self
-- @param #size_table tileSize
-- @return TMXTiledMap#TMXTiledMap self (return value: cc.TMXTiledMap)
2014-03-10 14:04:58 +08:00
--------------------------------
-- Set the properties.<br>
-- param properties A Type of ValueMap to set the properties.
2014-03-10 14:04:58 +08:00
-- @function [parent=#TMXTiledMap] setProperties
-- @param self
-- @param #map_table properties
-- @return TMXTiledMap#TMXTiledMap self (return value: cc.TMXTiledMap)
2014-03-10 14:04:58 +08:00
--------------------------------
-- Return the TMXLayer for the specific layer. <br>
-- param layerName A specific layer.<br>
-- return The TMXLayer for the specific layer.
2014-03-10 14:04:58 +08:00
-- @function [parent=#TMXTiledMap] getLayer
-- @param self
-- @param #string layerName
-- @return TMXLayer#TMXLayer ret (return value: cc.TMXLayer)
2014-03-10 14:04:58 +08:00
--------------------------------
-- Map orientation. <br>
-- return Map orientation.
2014-03-10 14:04:58 +08:00
-- @function [parent=#TMXTiledMap] getMapOrientation
-- @param self
-- @return int#int ret (return value: int)
--------------------------------
-- Set map orientation. <br>
-- param mapOrientation The map orientation.
2014-03-10 14:04:58 +08:00
-- @function [parent=#TMXTiledMap] setMapOrientation
-- @param self
-- @param #int mapOrientation
-- @return TMXTiledMap#TMXTiledMap self (return value: cc.TMXTiledMap)
2014-03-10 14:04:58 +08:00
--------------------------------
-- Creates a TMX Tiled Map with a TMX file.<br>
-- param tmxFile A TMX file.<br>
-- return An autorelease object.
2014-03-10 14:04:58 +08:00
-- @function [parent=#TMXTiledMap] create
-- @param self
-- @param #string tmxFile
-- @return TMXTiledMap#TMXTiledMap ret (return value: cc.TMXTiledMap)
2014-03-10 14:04:58 +08:00
--------------------------------
-- Initializes a TMX Tiled Map with a TMX formatted XML string and a path to TMX resources. <br>
-- param tmxString A TMX formatted XML string.<br>
-- param resourcePath The path to TMX resources.<br>
-- return An autorelease object.<br>
-- js NA
2014-03-10 14:04:58 +08:00
-- @function [parent=#TMXTiledMap] createWithXML
-- @param self
-- @param #string tmxString
-- @param #string resourcePath
-- @return TMXTiledMap#TMXTiledMap ret (return value: cc.TMXTiledMap)
2014-03-10 14:04:58 +08:00
--------------------------------
-- Get the description.<br>
-- js NA
-- @function [parent=#TMXTiledMap] getDescription
-- @param self
-- @return string#string ret (return value: string)
--------------------------------
-- js ctor
-- @function [parent=#TMXTiledMap] TMXTiledMap
-- @param self
-- @return TMXTiledMap#TMXTiledMap self (return value: cc.TMXTiledMap)
2014-03-10 14:04:58 +08:00
return nil