blob: 67f050d74e83ca1ff891dcb93b88b1ee270e54a3 (
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.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
|