blob: 7c84908fdf5cdf95ddc9e5e49dd76da10a8db92f (
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
28
|
---@meta
---@class cc.TransitionMoveInL :cc.TransitionScene@all parent class: TransitionScene,TransitionEaseScene
local TransitionMoveInL={ }
cc.TransitionMoveInL=TransitionMoveInL
---* Returns the action that will be performed. <br>
---* return The action that will be performed.
---@return cc.ActionInterval
function TransitionMoveInL:action () end
---*
---@param action cc.ActionInterval
---@return cc.ActionInterval
function TransitionMoveInL:easeActionWithAction (action) end
---* Creates a transition with duration and incoming scene.<br>
---* param t Duration time, in seconds.<br>
---* param scene A given scene.<br>
---* return A autoreleased TransitionMoveInL object.
---@param t float
---@param scene cc.Scene
---@return self
function TransitionMoveInL:create (t,scene) end
---*
---@return self
function TransitionMoveInL:TransitionMoveInL () end
|