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