blob: 305123243a6850728491eebdd20eed7cacb18a3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
---@class cc.PhysicsContactPostSolve
local PhysicsContactPostSolve={ }
cc.PhysicsContactPostSolve=PhysicsContactPostSolve
---* Get friction between two bodies.
---@return float
function PhysicsContactPostSolve:getFriction () end
---* Get surface velocity between two bodies.
---@return vec2_table
function PhysicsContactPostSolve:getSurfaceVelocity () end
---* Get restitution between two bodies.
---@return float
function PhysicsContactPostSolve:getRestitution () end
|