blob: f4c0962a911a21600b48b8940e52a6941325a076 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
---@meta
---@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
|