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