diff options
Diffstat (limited to 'meta/3rd/Cocos4.0/cc.RepeatForever.lua')
-rw-r--r-- | meta/3rd/Cocos4.0/cc.RepeatForever.lua | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/meta/3rd/Cocos4.0/cc.RepeatForever.lua b/meta/3rd/Cocos4.0/cc.RepeatForever.lua new file mode 100644 index 00000000..032248da --- /dev/null +++ b/meta/3rd/Cocos4.0/cc.RepeatForever.lua @@ -0,0 +1,47 @@ + +---@class cc.RepeatForever :cc.ActionInterval +local RepeatForever={ } +cc.RepeatForever=RepeatForever + + + + +---* Sets the inner action.<br> +---* param action The inner action. +---@param action cc.ActionInterval +---@return self +function RepeatForever:setInnerAction (action) end +---* initializes the action +---@param action cc.ActionInterval +---@return boolean +function RepeatForever:initWithAction (action) end +---* Gets the inner action.<br> +---* return The inner action. +---@return cc.ActionInterval +function RepeatForever:getInnerAction () end +---* Creates the action.<br> +---* param action The action need to repeat forever.<br> +---* return An autoreleased RepeatForever object. +---@param action cc.ActionInterval +---@return self +function RepeatForever:create (action) end +---* +---@param target cc.Node +---@return self +function RepeatForever:startWithTarget (target) end +---* +---@return self +function RepeatForever:clone () end +---* +---@return boolean +function RepeatForever:isDone () end +---* +---@return self +function RepeatForever:reverse () end +---* param dt In seconds. +---@param dt float +---@return self +function RepeatForever:step (dt) end +---* +---@return self +function RepeatForever:RepeatForever () end
\ No newline at end of file |