blob: 8b99a21bf17c2bf535eade666ca9e98f382622ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
---@meta
---@class cc.TransitionMoveInB :cc.TransitionMoveInL
local TransitionMoveInB={ }
cc.TransitionMoveInB=TransitionMoveInB
---* 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 TransitionMoveInB object.
---@param t float
---@param scene cc.Scene
---@return self
function TransitionMoveInB:create (t,scene) end
---*
---@return self
function TransitionMoveInB:TransitionMoveInB () end
|