blob: 73d64c09140c7d44374d2cea523cc16bdfc9020c (
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
|
---@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
|