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