23 lines
608 B
Lua
23 lines
608 B
Lua
|
---@meta
|
||
|
|
||
|
---@class cc.TransitionSplitRows :cc.TransitionSplitCols
|
||
|
local TransitionSplitRows={ }
|
||
|
cc.TransitionSplitRows=TransitionSplitRows
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
---* 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 TransitionSplitRows object.
|
||
|
---@param t float
|
||
|
---@param scene cc.Scene
|
||
|
---@return self
|
||
|
function TransitionSplitRows:create (t,scene) end
|
||
|
---*
|
||
|
---@return cc.ActionInterval
|
||
|
function TransitionSplitRows:action () end
|
||
|
---*
|
||
|
---@return self
|
||
|
function TransitionSplitRows:TransitionSplitRows () end
|