summaryrefslogtreecommitdiff
path: root/meta/3rd/Cocos4.0/library/ccs/ActionTintFrame.lua
blob: 79d083838a79ea6140810b5d0dc41d3c7ea9081c (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
---@meta

---@class ccs.ActionTintFrame :ccs.ActionFrame
local ActionTintFrame={ }
ccs.ActionTintFrame=ActionTintFrame




---* Gets the tint action color.<br>
---* return the tint action color.
---@return color3b_table
function ActionTintFrame:getColor () end
---* Gets the ActionInterval of ActionFrame.<br>
---* param duration   the duration time of ActionFrame<br>
---* return ActionInterval
---@param duration float
---@return cc.ActionInterval
function ActionTintFrame:getAction (duration) end
---* Changes the tint action color.<br>
---* param ccolor the tint action color
---@param ccolor color3b_table
---@return self
function ActionTintFrame:setColor (ccolor) end
---* Default constructor
---@return self
function ActionTintFrame:ActionTintFrame () end