mirror of
https://github.com/Steffo99/keep-everything-alive.git
synced 2024-11-23 09:54:19 +00:00
41 lines
1.3 KiB
C#
41 lines
1.3 KiB
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class LivesPanel : MonoBehaviour
|
|
{
|
|
private GameController gameController;
|
|
[BeforeStart]
|
|
public Image lifeImagePrefab;
|
|
[BeforeStart]
|
|
public Sprite lifeFull;
|
|
[BeforeStart]
|
|
public Sprite lifeEmpty;
|
|
private Image[] livesImages;
|
|
|
|
private void Awake() {
|
|
gameController = GameObject.FindGameObjectWithTag("GameController").GetComponent<GameController>();
|
|
}
|
|
|
|
private void Start() {
|
|
gameController.OnLivesChange += OnLivesChange;
|
|
livesImages = new Image[gameController.maxLives];
|
|
for(int i = 0; i < gameController.maxLives; i++) {
|
|
Image created = Instantiate(lifeImagePrefab.gameObject, transform).GetComponent<Image>();
|
|
livesImages[i] = created;
|
|
created.rectTransform.anchoredPosition = new Vector2(i * created.rectTransform.rect.width, 0);
|
|
}
|
|
}
|
|
|
|
private void OnLivesChange(int previous, int current) {
|
|
for(int i = 0; i < livesImages.Length; i++) {
|
|
if(i <= current) {
|
|
livesImages[i].sprite = lifeFull;
|
|
}
|
|
else {
|
|
livesImages[i].sprite = lifeEmpty;
|
|
}
|
|
}
|
|
}
|
|
}
|