nixos/lua-lsp/meta/3rd/Cocos4.0/library/ccs/ActionMoveFrame.lua

27 lines
762 B
Lua
Raw Normal View History

---@meta
---@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