summaryrefslogtreecommitdiff
path: root/meta/3rd/Cocos4.0/cc.PhysicsShapeBox.lua
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2021-02-22 21:05:36 +0800
committer最萌小汐 <sumneko@hotmail.com>2021-02-22 21:05:36 +0800
commit52097b6ee7cc8f5a770eb851902560b5b8592218 (patch)
tree6dcbb53ac0104912e950747a37aac6b25039e862 /meta/3rd/Cocos4.0/cc.PhysicsShapeBox.lua
parent6839cd530c53387df4d5db61f0cb2e5ed1a87298 (diff)
downloadlua-language-server-52097b6ee7cc8f5a770eb851902560b5b8592218.zip
add meta/3rd with acknowledgement
Diffstat (limited to 'meta/3rd/Cocos4.0/cc.PhysicsShapeBox.lua')
-rw-r--r--meta/3rd/Cocos4.0/cc.PhysicsShapeBox.lua27
1 files changed, 27 insertions, 0 deletions
diff --git a/meta/3rd/Cocos4.0/cc.PhysicsShapeBox.lua b/meta/3rd/Cocos4.0/cc.PhysicsShapeBox.lua
new file mode 100644
index 00000000..f31e92d5
--- /dev/null
+++ b/meta/3rd/Cocos4.0/cc.PhysicsShapeBox.lua
@@ -0,0 +1,27 @@
+
+---@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 \ No newline at end of file