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

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