blob: d19d23fde32ad430c2f512e7327a386a216e1e98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
---@meta
---@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
|