blob: 554998054aeb3b4d2186d3023a03a6b016d26379 (
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
|
---@meta
---@class cc.EaseExponentialOut :cc.ActionEase
local EaseExponentialOut={ }
cc.EaseExponentialOut=EaseExponentialOut
---*
---@param action cc.ActionInterval
---@return self
function EaseExponentialOut:create (action) end
---*
---@return self
function EaseExponentialOut:clone () end
---*
---@param time float
---@return self
function EaseExponentialOut:update (time) end
---*
---@return cc.ActionEase
function EaseExponentialOut:reverse () end
---*
---@return self
function EaseExponentialOut:EaseExponentialOut () end
|