summaryrefslogtreecommitdiff
path: root/meta/3rd/Cocos4.0/library/cc.FadeTo.lua
blob: 0e775a6ccbf140293eda7a7d9c10c0cddb68868e (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
---@meta

---@class cc.FadeTo :cc.ActionInterval
local FadeTo={ }
cc.FadeTo=FadeTo




---* initializes the action with duration and opacity <br>
---* param duration in seconds
---@param duration float
---@param opacity unsigned_char
---@return boolean
function FadeTo:initWithDuration (duration,opacity) end
---* Creates an action with duration and opacity.<br>
---* param duration Duration time, in seconds.<br>
---* param opacity A certain opacity, the range is from 0 to 255.<br>
---* return An autoreleased FadeTo object.
---@param duration float
---@param opacity unsigned_char
---@return self
function FadeTo:create (duration,opacity) end
---* 
---@param target cc.Node
---@return self
function FadeTo:startWithTarget (target) end
---* 
---@return self
function FadeTo:clone () end
---* 
---@return self
function FadeTo:reverse () end
---* param time In seconds.
---@param time float
---@return self
function FadeTo:update (time) end
---* 
---@return self
function FadeTo:FadeTo () end