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