blob: 2072de5d819dfa215b42406d275a57ddb9ceb386 (
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.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
|