Compare commits

..

2 Commits

Author SHA1 Message Date
jonathan santis
ea8a74e323 Merge branch 'master' of 5ccppi:ccppi/zig-raylib 2024-11-27 14:53:02 +01:00
jonathan santis
6233e706d2 sdf 2024-11-27 14:52:29 +01:00

View File

@ -81,8 +81,8 @@ const Particle = struct {
self.acceleration.a.x = vec.a.x * 0.8;
self.acceleration.a.y = vec.a.y * 0.8;
self.acceleration.a.z = vec.a.z;
self.velocity.a.x *= 0.999;
self.velocity.a.y *= 0.999;
self.velocity.a.x *= 0.995;
self.velocity.a.y *= 0.995;
}
};