blob: 7f4bdb7230b6e328d7115b702473632489491882 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
---@meta
---@class cc.TransitionEaseScene
local TransitionEaseScene={ }
cc.TransitionEaseScene=TransitionEaseScene
---* Returns the Ease action that will be performed on a linear action.<br>
---* since v0.8.2<br>
---* param action A given interval action.<br>
---* return The Ease action that will be performed on a linear action.
---@param action cc.ActionInterval
---@return cc.ActionInterval
function TransitionEaseScene:easeActionWithAction (action) end
|