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