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