summaryrefslogtreecommitdiff
path: root/meta/3rd/Cocos4.0/cc.EaseOut.lua
diff options
context:
space:
mode:
Diffstat (limited to 'meta/3rd/Cocos4.0/cc.EaseOut.lua')
-rw-r--r--meta/3rd/Cocos4.0/cc.EaseOut.lua26
1 files changed, 26 insertions, 0 deletions
diff --git a/meta/3rd/Cocos4.0/cc.EaseOut.lua b/meta/3rd/Cocos4.0/cc.EaseOut.lua
new file mode 100644
index 00000000..414b3cbd
--- /dev/null
+++ b/meta/3rd/Cocos4.0/cc.EaseOut.lua
@@ -0,0 +1,26 @@
+
+---@class cc.EaseOut :cc.EaseRateAction
+local EaseOut={ }
+cc.EaseOut=EaseOut
+
+
+
+
+---*
+---@param action cc.ActionInterval
+---@param rate float
+---@return self
+function EaseOut:create (action,rate) end
+---*
+---@return self
+function EaseOut:clone () end
+---*
+---@param time float
+---@return self
+function EaseOut:update (time) end
+---*
+---@return cc.EaseRateAction
+function EaseOut:reverse () end
+---*
+---@return self
+function EaseOut:EaseOut () end \ No newline at end of file