20 lines
593 B
Lua
20 lines
593 B
Lua
|
---@meta
|
||
|
|
||
|
---@class cc.TransitionProgressVertical :cc.TransitionProgress
|
||
|
local TransitionProgressVertical={ }
|
||
|
cc.TransitionProgressVertical=TransitionProgressVertical
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
---* Creates a transition with duration and incoming scene.<br>
|
||
|
---* param t Duration time, in seconds.<br>
|
||
|
---* param scene A given scene.<br>
|
||
|
---* return An autoreleased TransitionProgressVertical object.
|
||
|
---@param t float
|
||
|
---@param scene cc.Scene
|
||
|
---@return self
|
||
|
function TransitionProgressVertical:create (t,scene) end
|
||
|
---* js ctor
|
||
|
---@return self
|
||
|
function TransitionProgressVertical:TransitionProgressVertical () end
|