summaryrefslogtreecommitdiff
path: root/meta/3rd/Cocos4.0/library/cc.TintTo.lua
blob: 90421783908def1f0de10fc288b514e1a428ceb0 (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
41
---@meta

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




---*  initializes the action with duration and color 
---@param duration float
---@param red unsigned_char
---@param green unsigned_char
---@param blue unsigned_char
---@return boolean
function TintTo:initWithDuration (duration,red,green,blue) end
---@overload fun(float:float,unsigned_char1:color3b_table):self
---@overload fun(float:float,unsigned_char:unsigned_char,unsigned_char:unsigned_char,unsigned_char:unsigned_char):self
---@param duration float
---@param red unsigned_char
---@param green unsigned_char
---@param blue unsigned_char
---@return self
function TintTo:create (duration,red,green,blue) end
---* 
---@param target cc.Node
---@return self
function TintTo:startWithTarget (target) end
---* 
---@return self
function TintTo:clone () end
---* 
---@return self
function TintTo:reverse () end
---* param time In seconds.
---@param time float
---@return self
function TintTo:update (time) end
---* 
---@return self
function TintTo:TintTo () end