mirror of https://github.com/axmolengine/axmol.git
147 lines
3.5 KiB
Lua
147 lines
3.5 KiB
Lua
|
|
--------------------------------
|
|
-- @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
|