mirror of https://github.com/axmolengine/axmol.git
36 lines
1.0 KiB
Lua
36 lines
1.0 KiB
Lua
|
|
--------------------------------
|
|
-- @module ReuseGrid
|
|
-- @extend ActionInstant
|
|
-- @parent_module cc
|
|
|
|
--------------------------------
|
|
-- brief Create an action with the number of times that the current grid will be reused.<br>
|
|
-- param times Specify times the grid will be reused.<br>
|
|
-- return Return a pointer of ReuseGrid. When the creation failed, return nil.
|
|
-- @function [parent=#ReuseGrid] create
|
|
-- @param self
|
|
-- @param #int times
|
|
-- @return ReuseGrid#ReuseGrid ret (return value: cc.ReuseGrid)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ReuseGrid] startWithTarget
|
|
-- @param self
|
|
-- @param #cc.Node target
|
|
-- @return ReuseGrid#ReuseGrid self (return value: cc.ReuseGrid)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ReuseGrid] clone
|
|
-- @param self
|
|
-- @return ReuseGrid#ReuseGrid ret (return value: cc.ReuseGrid)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ReuseGrid] reverse
|
|
-- @param self
|
|
-- @return ReuseGrid#ReuseGrid ret (return value: cc.ReuseGrid)
|
|
|
|
return nil
|