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