blob: 58501e2d4584d8d7db68ddca82092fc7934706f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
---@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
|