From 52097b6ee7cc8f5a770eb851902560b5b8592218 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=80=E8=90=8C=E5=B0=8F=E6=B1=90?= Date: Mon, 22 Feb 2021 21:05:36 +0800 Subject: add meta/3rd with acknowledgement --- meta/3rd/Cocos4.0/cc.EaseRateAction.lua | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 meta/3rd/Cocos4.0/cc.EaseRateAction.lua (limited to 'meta/3rd/Cocos4.0/cc.EaseRateAction.lua') diff --git a/meta/3rd/Cocos4.0/cc.EaseRateAction.lua b/meta/3rd/Cocos4.0/cc.EaseRateAction.lua new file mode 100644 index 00000000..1b340e3b --- /dev/null +++ b/meta/3rd/Cocos4.0/cc.EaseRateAction.lua @@ -0,0 +1,30 @@ + +---@class cc.EaseRateAction :cc.ActionEase +local EaseRateAction={ } +cc.EaseRateAction=EaseRateAction + + + + +---* brief Set the rate value for the ease rate action.
+---* 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.
+---* param pAction The pointer of the inner action.
+---* param fRate The value of the rate parameter.
+---* 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.
+---* 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 -- cgit v1.2.3