summaryrefslogtreecommitdiff
path: root/meta/3rd/Cocos4.0/cc.ActionInstant.lua
diff options
context:
space:
mode:
Diffstat (limited to 'meta/3rd/Cocos4.0/cc.ActionInstant.lua')
-rw-r--r--meta/3rd/Cocos4.0/cc.ActionInstant.lua29
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/3rd/Cocos4.0/cc.ActionInstant.lua b/meta/3rd/Cocos4.0/cc.ActionInstant.lua
new file mode 100644
index 00000000..3f437efc
--- /dev/null
+++ b/meta/3rd/Cocos4.0/cc.ActionInstant.lua
@@ -0,0 +1,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 \ No newline at end of file