From 5d01cc939176e307bf1029ebce0d34edb4175c90 Mon Sep 17 00:00:00 2001 From: TheShadow45 <160431037+TheShadow45@users.noreply.github.com> Date: Mon, 4 Mar 2024 22:16:49 -0600 Subject: [PATCH] Made the deathball spawnin with a red circle Made the deathball spawn in with a red circle to keep the look uniform --- Assets/Scripts/DeathBall.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/DeathBall.cs b/Assets/Scripts/DeathBall.cs index cd535d0b..fa06178a 100644 --- a/Assets/Scripts/DeathBall.cs +++ b/Assets/Scripts/DeathBall.cs @@ -28,7 +28,7 @@ public void InitDB(float retractedDuration) _rb.isKinematic = false; _matPropBlock = new MaterialPropertyBlock(); - _matPropBlock.SetFloat("_FillAmount", 0); + _matPropBlock.SetFloat("_FillAmount", 1); _loadingRing.SetPropertyBlock(_matPropBlock); }