diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2021-07-05 20:51:43 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2021-07-05 20:51:43 +0800 |
commit | 8fefb8f3e100976235dc83d6ae3785952d11c710 (patch) | |
tree | 459117e6cecc70824273c4d32285cb6eec468098 /meta/3rd/Cocos4.0/library/cc.EaseRateAction.lua | |
parent | b6c18d05410fd4ca209f9c34e0992caf40cf3701 (diff) | |
download | lua-language-server-8fefb8f3e100976235dc83d6ae3785952d11c710.zip |
cleanup
Diffstat (limited to 'meta/3rd/Cocos4.0/library/cc.EaseRateAction.lua')
-rw-r--r-- | meta/3rd/Cocos4.0/library/cc.EaseRateAction.lua | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta/3rd/Cocos4.0/library/cc.EaseRateAction.lua b/meta/3rd/Cocos4.0/library/cc.EaseRateAction.lua new file mode 100644 index 00000000..554b31d9 --- /dev/null +++ b/meta/3rd/Cocos4.0/library/cc.EaseRateAction.lua @@ -0,0 +1,31 @@ +---@meta + +---@class cc.EaseRateAction :cc.ActionEase +local EaseRateAction={ } +cc.EaseRateAction=EaseRateAction + + + + +---* brief Set the rate value for the ease rate action.<br> +---* param rate The value will be set. +---@param rate float +---@return self +function EaseRateAction:setRate (rate) end +---* brief Initializes the action with the inner action and the rate parameter.<br> +---* param pAction The pointer of the inner action.<br> +---* param fRate The value of the rate parameter.<br> +---* return Return true when the initialization success, otherwise return false. +---@param pAction cc.ActionInterval +---@param fRate float +---@return boolean +function EaseRateAction:initWithAction (pAction,fRate) end +---* brief Get the rate value of the ease rate action.<br> +---* return Return the rate value of the ease rate action. +---@return float +function EaseRateAction:getRate () end +---* +---@param action cc.ActionInterval +---@param rate float +---@return self +function EaseRateAction:create (action,rate) end
\ No newline at end of file |