summaryrefslogtreecommitdiff
path: root/meta/3rd/Cocos4.0/cc.DelayTime.lua
diff options
context:
space:
mode:
Diffstat (limited to 'meta/3rd/Cocos4.0/cc.DelayTime.lua')
-rw-r--r--meta/3rd/Cocos4.0/cc.DelayTime.lua27
1 files changed, 27 insertions, 0 deletions
diff --git a/meta/3rd/Cocos4.0/cc.DelayTime.lua b/meta/3rd/Cocos4.0/cc.DelayTime.lua
new file mode 100644
index 00000000..889f18bc
--- /dev/null
+++ b/meta/3rd/Cocos4.0/cc.DelayTime.lua
@@ -0,0 +1,27 @@
+
+---@class cc.DelayTime :cc.ActionInterval
+local DelayTime={ }
+cc.DelayTime=DelayTime
+
+
+
+
+---* Creates the action.<br>
+---* param d Duration time, in seconds.<br>
+---* return An autoreleased DelayTime object.
+---@param d float
+---@return self
+function DelayTime:create (d) end
+---*
+---@return self
+function DelayTime:clone () end
+---* param time In seconds.
+---@param time float
+---@return self
+function DelayTime:update (time) end
+---*
+---@return self
+function DelayTime:reverse () end
+---*
+---@return self
+function DelayTime:DelayTime () end \ No newline at end of file