fix: physics tweak

This commit is contained in:
AfonsoCMSousa
2026-03-24 01:22:28 +00:00
parent d3510b2ce8
commit a1f868c27b
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -63,7 +63,7 @@ Particle particle_init(Vec3 position, Color color) {
p.color = color;
p.velocity = {0.0f, 0.0f, 0.0f};
p.life = -2.0f; // INFO: Imorta
p.life = -2.0f; // INFO: Imortal
p.dampening = 0.9f;
p.radius = 0.05f;
return p;