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