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