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