mirror of https://github.com/axmolengine/axmol.git
48 lines
1.4 KiB
Lua
48 lines
1.4 KiB
Lua
|
|
--------------------------------
|
|
-- @module RepeatForever
|
|
-- @extend ActionInterval
|
|
|
|
--------------------------------
|
|
-- @function [parent=#RepeatForever] setInnerAction
|
|
-- @param self
|
|
-- @param #cc.ActionInterval actioninterval
|
|
|
|
--------------------------------
|
|
-- @function [parent=#RepeatForever] getInnerAction
|
|
-- @param self
|
|
-- @return ActionInterval#ActionInterval ret (return value: cc.ActionInterval)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#RepeatForever] create
|
|
-- @param self
|
|
-- @param #cc.ActionInterval actioninterval
|
|
-- @return RepeatForever#RepeatForever ret (return value: cc.RepeatForever)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#RepeatForever] startWithTarget
|
|
-- @param self
|
|
-- @param #cc.Node node
|
|
|
|
--------------------------------
|
|
-- @function [parent=#RepeatForever] clone
|
|
-- @param self
|
|
-- @return RepeatForever#RepeatForever ret (return value: cc.RepeatForever)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#RepeatForever] isDone
|
|
-- @param self
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#RepeatForever] reverse
|
|
-- @param self
|
|
-- @return RepeatForever#RepeatForever ret (return value: cc.RepeatForever)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#RepeatForever] step
|
|
-- @param self
|
|
-- @param #float float
|
|
|
|
return nil
|