blob: f98c13a16970778220a5c374f54b264594e404b7 (
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
27
28
29
30
31
|
---@class cc.Place :cc.ActionInstant
local Place={ }
cc.Place=Place
---* Initializes a Place action with a position
---@param pos vec2_table
---@return boolean
function Place:initWithPosition (pos) end
---* Creates a Place action with a position.<br>
---* param pos A certain position.<br>
---* return An autoreleased Place object.
---@param pos vec2_table
---@return self
function Place:create (pos) end
---*
---@return self
function Place:clone () end
---* param time In seconds.
---@param time float
---@return self
function Place:update (time) end
---*
---@return self
function Place:reverse () end
---*
---@return self
function Place:Place () end
|