blob: 17cd322cba8d78b7ca68bff53e09da69b2d228c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
---@class cc.TransitionSlideInT :cc.TransitionSlideInL
local TransitionSlideInT={ }
cc.TransitionSlideInT=TransitionSlideInT
---* 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 TransitionSlideInT object.
---@param t float
---@param scene cc.Scene
---@return self
function TransitionSlideInT:create (t,scene) end
---* returns the action that will be performed by the incoming and outgoing scene
---@return cc.ActionInterval
function TransitionSlideInT:action () end
---*
---@return self
function TransitionSlideInT:TransitionSlideInT () end
|