blob: fe8c520b015a10c17c0328b994c0e04d22a22a55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
|