From e6fa4a6a2cddeb46e511fd880b45cc93754ecbc7 Mon Sep 17 00:00:00 2001 From: sippy-thinks Date: Sun, 26 May 2024 02:18:43 +0800 Subject: [PATCH] fixed jump changed jump height value for sphere script, also just to check if the commit worked --- Assets/scripts/Sphere.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/scripts/Sphere.cs b/Assets/scripts/Sphere.cs index a180598..20276cf 100644 --- a/Assets/scripts/Sphere.cs +++ b/Assets/scripts/Sphere.cs @@ -6,7 +6,7 @@ public class Sphere : CommonCollectibles { public override void Collect(GameObject gameObject) { - gameObject.GetComponent().MoveSpeed += 5.0f; + gameObject.GetComponent().MoveSpeed += 6.0f; Destroy(this); } }