Added .gitignore, and implemented stable stacking

This commit is contained in:
max
2026-09-03 17:50:53 +02:00
parent d8758f98dc
commit 6abf8320b0
36 changed files with 249 additions and 1047 deletions

View File

@@ -6,7 +6,7 @@ namespace PhysicsEngine
{
public static void Apply(Body body, float dt)
{
body.ApplyForce(Vector2.UnitY * 9.81f/10 * body.Mass);
body.ApplyForce(Vector2.UnitY * 9.81f * body.Mass);
}
}
}