mirror of https://github.com/axmolengine/axmol.git
34 lines
915 B
Lua
34 lines
915 B
Lua
|
|
--------------------------------
|
|
-- @module ReuseGrid
|
|
-- @extend ActionInstant
|
|
-- @parent_module cc
|
|
|
|
--------------------------------
|
|
-- creates an action with the number of times that the current grid will be reused
|
|
-- @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
|