blob: 7bfcfe067c5b7b3ed6e19dadbd1b0245e44fde4f (
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
|
---@class ccs.AnchorPointFrame :ccs.Frame
local AnchorPointFrame={ }
ccs.AnchorPointFrame=AnchorPointFrame
---*
---@param point vec2_table
---@return self
function AnchorPointFrame:setAnchorPoint (point) end
---*
---@return vec2_table
function AnchorPointFrame:getAnchorPoint () end
---*
---@return self
function AnchorPointFrame:create () end
---*
---@return ccs.Frame
function AnchorPointFrame:clone () end
---*
---@return self
function AnchorPointFrame:AnchorPointFrame () end
|