From 3a8cf6ad7d915a49fb19b3ffc5f1ddfc9b208376 Mon Sep 17 00:00:00 2001 From: wookywok <62037083+wookywok@users.noreply.github.com> Date: Fri, 10 May 2024 15:47:37 -0500 Subject: [PATCH] also the updated script lmao --- Assets/Scripts/Games/Spaceball/Spaceball.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Assets/Scripts/Games/Spaceball/Spaceball.cs b/Assets/Scripts/Games/Spaceball/Spaceball.cs index b59742c8a..2226b4e38 100644 --- a/Assets/Scripts/Games/Spaceball/Spaceball.cs +++ b/Assets/Scripts/Games/Spaceball/Spaceball.cs @@ -96,6 +96,8 @@ namespace HeavenStudio.Games Baseball = 0, Onigiri = 1, Alien = 2, + Apple = 4, + Star = 5, Tacobell = 3, } @@ -276,6 +278,12 @@ namespace HeavenStudio.Games ball.transform.localScale = new Vector3(2f, 2f, 1); ball.GetComponent().isTacobell = true; break; + case (int)BallType.Apple: + ball.transform.localScale = new Vector3(5f, 5f, 1); + break; + case (int)BallType.Star: + ball.transform.localScale = new Vector3(6f, 6f, 1); + break; } Dispenser.GetComponent().Play("DispenserShoot", 0, 0);