overhauled physics engine

This commit is contained in:
Dynamitos
2023-01-21 18:43:21 +01:00
parent 3c7346cf7b
commit 2208ab438a
164 changed files with 22606 additions and 928 deletions
+4 -4
View File
@@ -8,10 +8,10 @@ namespace Component
struct RigidBody
{
float mass = 1.0f;
Math::Vector force;
Math::Vector torque;
Math::Vector linearMomentum;
Math::Vector angularMomentum;
Vector force;
Vector torque;
Vector linearMomentum;
Vector angularMomentum;
};
} // namespace Component
} // namespace Seele