Bug the second

This commit is contained in:
RochesterX
2025-03-07 17:35:14 -05:00
parent 6fda7978f3
commit 3d28357b56
3 changed files with 4 additions and 4 deletions

View File

@@ -24,7 +24,7 @@ public class HealthBarManager : MonoBehaviour
{
GameObject player = kvp.Key;
GameObject healthBar = kvp.Value;
healthBar.GetComponent<TerribleHealthBarScript>().fullHealthColor = GameManager.playerColors[GameManager.players.IndexOf(player)];
//healthBar.GetComponent<TerribleHealthBarScript>().fullHealthColor = GameManager.playerColors[GameManager.players.IndexOf(player)]; // Color health bars
healthBar.transform.SetPositionAndRotation(new Vector3(player.transform.position.x, player.transform.position.y + 1.5f, player.transform.position.z), Quaternion.identity);
}
}