JoltPhysicsSharp
JoltPhysicsSharp copied to clipboard
JoltPhysics C# bindings
Is there no interface to `PhysicsSettings` such as `PenetrationSlop` and `TimeBeforeSleep`? (https://jrouwe.github.io/JoltPhysics/struct_physics_settings.html)
To create a rigidbody with my destination mass, in JoltPhysics docs' method, do following: ``` SphereShape shape = new(0.5f); MassProperties massProperties = shape.MassProperties; massProperties.ScaleToMass(10); BodyCreationSettings spherSettings = new(shape, new Double3(0,...
1. Add bindings for StateRecorderImpl. 2. Change some cmake instructions to suppress compilation warnings.
Hello! Is there bindings for the [Debug Renderer](https://jrouwe.github.io/JoltPhysics/index.html#debug-rendering) from Jolt? If yes, can you point me where is it as I couldn't find the types and overloads for it. Thank...