chore: ball speedup increased

This commit is contained in:
Syntriax 2025-06-14 23:33:19 +03:00
parent 41f6dba5e4
commit 43875a6069
2 changed files with 2 additions and 2 deletions

2
Engine

@ -1 +1 @@
Subproject commit 45524e474e1f795012d5e04f0b7f709eff2026b5
Subproject commit 2335c3ec628a3dc55fc5ba96cd6c1eea2ba1a3f9

View File

@ -9,7 +9,7 @@ public class BallBehaviour : Behaviour2D, IFirstFrameUpdate, IPhysicsUpdate, INe
IPacketListenerClient<BallBehaviour.BallUpdatePacket>
{
public float Speed { get; set; } = 500f;
public float SpeedUpMultiplier { get; set; } = .0125f;
public float SpeedUpMultiplier { get; set; } = .025f;
public IRigidBody2D RigidBody { get; private set; } = null!;