diff options
Diffstat (limited to 'meta/3rd/Cocos4.0/cc.PhysicsJointPin.lua')
-rw-r--r-- | meta/3rd/Cocos4.0/cc.PhysicsJointPin.lua | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/meta/3rd/Cocos4.0/cc.PhysicsJointPin.lua b/meta/3rd/Cocos4.0/cc.PhysicsJointPin.lua new file mode 100644 index 00000000..b3224053 --- /dev/null +++ b/meta/3rd/Cocos4.0/cc.PhysicsJointPin.lua @@ -0,0 +1,19 @@ + +---@class cc.PhysicsJointPin :cc.PhysicsJoint +local PhysicsJointPin={ } +cc.PhysicsJointPin=PhysicsJointPin + + + + +---* +---@return boolean +function PhysicsJointPin:createConstraints () end +---@overload fun(cc.PhysicsBody:cc.PhysicsBody,cc.PhysicsBody:cc.PhysicsBody,vec2_table:vec2_table,vec2_table:vec2_table):self +---@overload fun(cc.PhysicsBody:cc.PhysicsBody,cc.PhysicsBody:cc.PhysicsBody,vec2_table:vec2_table):self +---@param a cc.PhysicsBody +---@param b cc.PhysicsBody +---@param anchr1 vec2_table +---@param anchr2 vec2_table +---@return self +function PhysicsJointPin:construct (a,b,anchr1,anchr2) end
\ No newline at end of file |