mirror of https://github.com/axmolengine/axmol.git
35 lines
890 B
Lua
35 lines
890 B
Lua
|
|
--------------------------------
|
|
-- @module SplitCols
|
|
-- @extend TiledGrid3DAction
|
|
-- @parent_module cc
|
|
|
|
--------------------------------
|
|
-- creates the action with the number of columns to split and the duration <br>
|
|
-- param duration in seconds
|
|
-- @function [parent=#SplitCols] create
|
|
-- @param self
|
|
-- @param #float duration
|
|
-- @param #unsigned int cols
|
|
-- @return SplitCols#SplitCols ret (return value: cc.SplitCols)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#SplitCols] startWithTarget
|
|
-- @param self
|
|
-- @param #cc.Node target
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#SplitCols] clone
|
|
-- @param self
|
|
-- @return SplitCols#SplitCols ret (return value: cc.SplitCols)
|
|
|
|
--------------------------------
|
|
-- param time in seconds
|
|
-- @function [parent=#SplitCols] update
|
|
-- @param self
|
|
-- @param #float time
|
|
|
|
return nil
|