mirror of https://github.com/axmolengine/axmol.git
Merge pull request #8699 from CocosRobot/update_lua_bindings_1413309490
[AUTO]: updating luabinding automatically
This commit is contained in:
commit
f0c3713672
|
@ -0,0 +1,146 @@
|
||||||
|
|
||||||
|
--------------------------------
|
||||||
|
-- @module CSLoader
|
||||||
|
-- @parent_module cc
|
||||||
|
|
||||||
|
--------------------------------
|
||||||
|
--
|
||||||
|
-- @function [parent=#CSLoader] createNodeFromJson
|
||||||
|
-- @param self
|
||||||
|
-- @param #string filename
|
||||||
|
-- @return Node#Node ret (return value: cc.Node)
|
||||||
|
|
||||||
|
--------------------------------
|
||||||
|
--
|
||||||
|
-- @function [parent=#CSLoader] createNodeFromProtocolBuffers
|
||||||
|
-- @param self
|
||||||
|
-- @param #string filename
|
||||||
|
-- @return Node#Node ret (return value: cc.Node)
|
||||||
|
|
||||||
|
--------------------------------
|
||||||
|
--
|
||||||
|
-- @function [parent=#CSLoader] init
|
||||||
|
-- @param self
|
||||||
|
|
||||||
|
--------------------------------
|
||||||
|
--
|
||||||
|
-- @function [parent=#CSLoader] setRecordXMLPath
|
||||||
|
-- @param self
|
||||||
|
-- @param #bool record
|
||||||
|
|
||||||
|
--------------------------------
|
||||||
|
--
|
||||||
|
-- @function [parent=#CSLoader] setJsonPath
|
||||||
|
-- @param self
|
||||||
|
-- @param #string jsonPath
|
||||||
|
|
||||||
|
--------------------------------
|
||||||
|
--
|
||||||
|
-- @function [parent=#CSLoader] loadNodeWithFile
|
||||||
|
-- @param self
|
||||||
|
-- @param #string fileName
|
||||||
|
-- @return Node#Node ret (return value: cc.Node)
|
||||||
|
|
||||||
|
--------------------------------
|
||||||
|
--
|
||||||
|
-- @function [parent=#CSLoader] loadNodeWithContent
|
||||||
|
-- @param self
|
||||||
|
-- @param #string content
|
||||||
|
-- @return Node#Node ret (return value: cc.Node)
|
||||||
|
|
||||||
|
--------------------------------
|
||||||
|
--
|
||||||
|
-- @function [parent=#CSLoader] isRecordProtocolBuffersPath
|
||||||
|
-- @param self
|
||||||
|
-- @return bool#bool ret (return value: bool)
|
||||||
|
|
||||||
|
--------------------------------
|
||||||
|
--
|
||||||
|
-- @function [parent=#CSLoader] isRecordXMLPath
|
||||||
|
-- @param self
|
||||||
|
-- @return bool#bool ret (return value: bool)
|
||||||
|
|
||||||
|
--------------------------------
|
||||||
|
--
|
||||||
|
-- @function [parent=#CSLoader] getProtocolBuffersPath
|
||||||
|
-- @param self
|
||||||
|
-- @return string#string ret (return value: string)
|
||||||
|
|
||||||
|
--------------------------------
|
||||||
|
--
|
||||||
|
-- @function [parent=#CSLoader] getXMLPath
|
||||||
|
-- @param self
|
||||||
|
-- @return string#string ret (return value: string)
|
||||||
|
|
||||||
|
--------------------------------
|
||||||
|
--
|
||||||
|
-- @function [parent=#CSLoader] createNodeFromXML
|
||||||
|
-- @param self
|
||||||
|
-- @param #string filename
|
||||||
|
-- @return Node#Node ret (return value: cc.Node)
|
||||||
|
|
||||||
|
--------------------------------
|
||||||
|
--
|
||||||
|
-- @function [parent=#CSLoader] isRecordJsonPath
|
||||||
|
-- @param self
|
||||||
|
-- @return bool#bool ret (return value: bool)
|
||||||
|
|
||||||
|
--------------------------------
|
||||||
|
--
|
||||||
|
-- @function [parent=#CSLoader] setRecordProtocolBuffersPath
|
||||||
|
-- @param self
|
||||||
|
-- @param #bool record
|
||||||
|
|
||||||
|
--------------------------------
|
||||||
|
--
|
||||||
|
-- @function [parent=#CSLoader] getJsonPath
|
||||||
|
-- @param self
|
||||||
|
-- @return string#string ret (return value: string)
|
||||||
|
|
||||||
|
--------------------------------
|
||||||
|
--
|
||||||
|
-- @function [parent=#CSLoader] setRecordJsonPath
|
||||||
|
-- @param self
|
||||||
|
-- @param #bool record
|
||||||
|
|
||||||
|
--------------------------------
|
||||||
|
--
|
||||||
|
-- @function [parent=#CSLoader] setProtocolBuffersPath
|
||||||
|
-- @param self
|
||||||
|
-- @param #string protocolBuffersPath
|
||||||
|
|
||||||
|
--------------------------------
|
||||||
|
--
|
||||||
|
-- @function [parent=#CSLoader] purge
|
||||||
|
-- @param self
|
||||||
|
|
||||||
|
--------------------------------
|
||||||
|
--
|
||||||
|
-- @function [parent=#CSLoader] setXMLPath
|
||||||
|
-- @param self
|
||||||
|
-- @param #string xmlPath
|
||||||
|
|
||||||
|
--------------------------------
|
||||||
|
--
|
||||||
|
-- @function [parent=#CSLoader] destroyInstance
|
||||||
|
-- @param self
|
||||||
|
|
||||||
|
--------------------------------
|
||||||
|
--
|
||||||
|
-- @function [parent=#CSLoader] createNode
|
||||||
|
-- @param self
|
||||||
|
-- @param #string filename
|
||||||
|
-- @return Node#Node ret (return value: cc.Node)
|
||||||
|
|
||||||
|
--------------------------------
|
||||||
|
--
|
||||||
|
-- @function [parent=#CSLoader] getInstance
|
||||||
|
-- @param self
|
||||||
|
-- @return CSLoader#CSLoader ret (return value: cc.CSLoader)
|
||||||
|
|
||||||
|
--------------------------------
|
||||||
|
--
|
||||||
|
-- @function [parent=#CSLoader] CSLoader
|
||||||
|
-- @param self
|
||||||
|
|
||||||
|
return nil
|
|
@ -1216,4 +1216,9 @@
|
||||||
-- @field [parent=#cc] Component#Component Component preloaded module
|
-- @field [parent=#cc] Component#Component Component preloaded module
|
||||||
|
|
||||||
|
|
||||||
|
--------------------------------------------------------
|
||||||
|
-- the cc CSLoader
|
||||||
|
-- @field [parent=#cc] CSLoader#CSLoader CSLoader preloaded module
|
||||||
|
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1562,6 +1562,30 @@ int register_all_cocos2dx(lua_State* tolua_S);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue