blob: 20ed7ed1bc8d20ed6f773a4bd5f349d332bc3b22 (
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
|
---@meta
---@class cc.TransitionFade :cc.TransitionScene
local TransitionFade={ }
cc.TransitionFade=TransitionFade
---@overload fun(float:float,cc.Scene:cc.Scene):self
---@overload fun(float:float,cc.Scene:cc.Scene,color3b_table:color3b_table):self
---@param t float
---@param scene cc.Scene
---@param color color3b_table
---@return boolean
function TransitionFade:initWithDuration (t,scene,color) end
---@overload fun(float:float,cc.Scene:cc.Scene):self
---@overload fun(float:float,cc.Scene:cc.Scene,color3b_table:color3b_table):self
---@param duration float
---@param scene cc.Scene
---@param color color3b_table
---@return self
function TransitionFade:create (duration,scene,color) end
---*
---@return self
function TransitionFade:TransitionFade () end
|