summaryrefslogtreecommitdiff
path: root/meta/3rd/Cocos4.0/library/cc/PhysicsShapeBox.lua
blob: 818a6a62e72a45cd59d7258a30310cac25ba589b (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
---@meta

---@class cc.PhysicsShapeBox :cc.PhysicsShapePolygon
local PhysicsShapeBox={ }
cc.PhysicsShapeBox=PhysicsShapeBox




---* Get this box's width and height.<br>
---* return An Size object.
---@return size_table
function PhysicsShapeBox:getSize () end
---* Creates a PhysicsShapeBox with specified value.<br>
---* param   size Size contains this box's width and height.<br>
---* param   material A PhysicsMaterial object, the default value is PHYSICSSHAPE_MATERIAL_DEFAULT.<br>
---* param   offset A Vec2 object, it is the offset from the body's center of gravity in body local coordinates.<br>
---* return  An autoreleased PhysicsShapeBox object pointer.
---@param size size_table
---@param material cc.PhysicsMaterial
---@param offset vec2_table
---@param radius float
---@return self
function PhysicsShapeBox:create (size,material,offset,radius) end
---* Get this box's position offset.<br>
---* return A Vec2 object.
---@return vec2_table
function PhysicsShapeBox:getOffset () end