blob: 803a3928ba8f3d81c8e477e2a3061dcee83359d7 (
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
|
---@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
|