summaryrefslogtreecommitdiff
path: root/meta/3rd/Cocos4.0/cc.PhysicsJointFixed.lua
diff options
context:
space:
mode:
Diffstat (limited to 'meta/3rd/Cocos4.0/cc.PhysicsJointFixed.lua')
-rw-r--r--meta/3rd/Cocos4.0/cc.PhysicsJointFixed.lua21
1 files changed, 21 insertions, 0 deletions
diff --git a/meta/3rd/Cocos4.0/cc.PhysicsJointFixed.lua b/meta/3rd/Cocos4.0/cc.PhysicsJointFixed.lua
new file mode 100644
index 00000000..da6c68f0
--- /dev/null
+++ b/meta/3rd/Cocos4.0/cc.PhysicsJointFixed.lua
@@ -0,0 +1,21 @@
+
+---@class cc.PhysicsJointFixed :cc.PhysicsJoint
+local PhysicsJointFixed={ }
+cc.PhysicsJointFixed=PhysicsJointFixed
+
+
+
+
+---*
+---@return boolean
+function PhysicsJointFixed:createConstraints () end
+---* Create a fixed joint.<br>
+---* param a A is the body to connect.<br>
+---* param b B is the body to connect.<br>
+---* param anchr It's the pivot position.<br>
+---* return A object pointer.
+---@param a cc.PhysicsBody
+---@param b cc.PhysicsBody
+---@param anchr vec2_table
+---@return self
+function PhysicsJointFixed:construct (a,b,anchr) end \ No newline at end of file