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

---@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