summaryrefslogtreecommitdiff
path: root/meta/3rd/Cocos4.0/library/cc/ActionInstant.lua
blob: 6c523c62b5e0fe2d1a85cabfd5e919078acb1c74 (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
---@meta

---@class cc.ActionInstant :cc.FiniteTimeAction
local ActionInstant={ }
cc.ActionInstant=ActionInstant




---* 
---@param target cc.Node
---@return self
function ActionInstant:startWithTarget (target) end
---* 
---@return self
function ActionInstant:reverse () end
---* 
---@return self
function ActionInstant:clone () end
---* param time In seconds.
---@param time float
---@return self
function ActionInstant:update (time) end
---* param dt In seconds.
---@param dt float
---@return self
function ActionInstant:step (dt) end
---* 
---@return boolean
function ActionInstant:isDone () end