diff options
Diffstat (limited to 'meta/3rd/Cocos4.0/ccs.ActionMoveFrame.lua')
-rw-r--r-- | meta/3rd/Cocos4.0/ccs.ActionMoveFrame.lua | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/meta/3rd/Cocos4.0/ccs.ActionMoveFrame.lua b/meta/3rd/Cocos4.0/ccs.ActionMoveFrame.lua new file mode 100644 index 00000000..fe8c520b --- /dev/null +++ b/meta/3rd/Cocos4.0/ccs.ActionMoveFrame.lua @@ -0,0 +1,26 @@ + +---@class ccs.ActionMoveFrame :ccs.ActionFrame +local ActionMoveFrame={ } +ccs.ActionMoveFrame=ActionMoveFrame + + + + +---* Changes the move action position.<br> +---* param the move action position. +---@param pos vec2_table +---@return self +function ActionMoveFrame:setPosition (pos) end +---* Gets the ActionInterval of ActionFrame.<br> +---* param duration the duration time of ActionFrame<br> +---* return ActionInterval +---@param duration float +---@return cc.ActionInterval +function ActionMoveFrame:getAction (duration) end +---* Gets the move action position.<br> +---* return the move action position. +---@return vec2_table +function ActionMoveFrame:getPosition () end +---* Default constructor +---@return self +function ActionMoveFrame:ActionMoveFrame () end
\ No newline at end of file |