TO SQUASH: better ball collisions.

This commit is contained in:
2026-08-03 01:47:14 -04:00
parent 378efa16ef
commit 17051821b5
8 changed files with 50 additions and 10 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ public class OozeBall : MonoBehaviour
{
audioSource = GetComponent<AudioSource>();
animator = GetComponent<Animator>();
speed = new Vector2(Random.Range(-0.005f, 0.005f), Random.Range(-0.005f, 0.005f));
speed = new Vector2(Random.Range(-0.002f, 0.002f), Random.Range(-0.002f, 0.002f));
audioSource.PlayOneShot(spawnSound);
}