blob: c4f9feb8b100431384212478b968213de9df366c (
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
27
|
---@meta
---@class cc.EaseElasticInOut :cc.EaseElastic
local EaseElasticInOut={ }
cc.EaseElasticInOut=EaseElasticInOut
---*
---@param action cc.ActionInterval
---@param rate float
---@return self
function EaseElasticInOut:create (action,rate) end
---*
---@return self
function EaseElasticInOut:clone () end
---*
---@param time float
---@return self
function EaseElasticInOut:update (time) end
---*
---@return cc.EaseElastic
function EaseElasticInOut:reverse () end
---*
---@return self
function EaseElasticInOut:EaseElasticInOut () end
|