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