diff options
Diffstat (limited to 'meta/3rd/Cocos4.0/ccs.ActionTintFrame.lua')
-rw-r--r-- | meta/3rd/Cocos4.0/ccs.ActionTintFrame.lua | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/meta/3rd/Cocos4.0/ccs.ActionTintFrame.lua b/meta/3rd/Cocos4.0/ccs.ActionTintFrame.lua new file mode 100644 index 00000000..803a3928 --- /dev/null +++ b/meta/3rd/Cocos4.0/ccs.ActionTintFrame.lua @@ -0,0 +1,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
\ No newline at end of file |