Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| wiki:etc_prototyping [2022/08/16 00:03] – [Health] admin | wiki:etc_prototyping [2022/08/16 00:05] (current) – [UIController] admin | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== UIController ====== | ||
| + | |||
| + | {{ : | ||
| + | |||
| + | <code CSharp | UI Controller Script> | ||
| + | using System.Collections; | ||
| + | using System.Collections.Generic; | ||
| + | using UnityEngine; | ||
| + | using TMPro; | ||
| + | |||
| + | public class ZombieUIManager : MonoBehaviour | ||
| + | { | ||
| + | public TextMeshProUGUI bulletCount; | ||
| + | public TextMeshProUGUI staminaCount; | ||
| + | public TextMeshProUGUI healthCount; | ||
| + | public TextMeshProUGUI coinCount; | ||
| + | private ZombieGunController _zombieGunController; | ||
| + | private ZombiePlayerController _zombiePlayerController; | ||
| + | private ZombieHealth _zombieHealth; | ||
| + | |||
| + | |||
| + | private void Awake() | ||
| + | { | ||
| + | _zombieGunController = FindObjectOfType< | ||
| + | _zombieGunController.sendEventToUI.AddListener(UpdateBulletCount); | ||
| + | |||
| + | _zombiePlayerController = FindObjectOfType< | ||
| + | _zombiePlayerController.sendEventToUI.AddListener(UpdateStaminaCount); | ||
| + | _zombiePlayerController.onPlayerDied.AddListener(UpadatePlayerDied); | ||
| + | initialStamina = _zombiePlayerController.runStamina; | ||
| + | |||
| + | _zombieHealth = _zombiePlayerController.gameObject.GetComponent< | ||
| + | _zombieHealth.sendEventHealthCount.AddListener(UpdateHealth); | ||
| + | } | ||
| + | |||
| + | private void UpdateBulletCount(int x) | ||
| + | { | ||
| + | bulletCount.text = x.ToString(); | ||
| + | } | ||
| + | |||
| + | private void UpdateHealth(float x) | ||
| + | { | ||
| + | healthCount.text = Mathf.Ceil(Mathf.Clamp(x, | ||
| + | } | ||
| + | |||
| + | private float initialStamina; | ||
| + | private void UpdateStaminaCount(float x) | ||
| + | { | ||
| + | int staminaPercentage = Mathf.RoundToInt(Mathf.Clamp(x/ | ||
| + | staminaCount.text = staminaPercentage.ToString() + " | ||
| + | } | ||
| + | |||
| + | private void UpadatePlayerDied() | ||
| + | { | ||
| + | |||
| + | } | ||
| + | |||
| + | public void UpdateCoinCount(int x) | ||
| + | { | ||
| + | coinCount.text = x.ToString(); | ||
| + | } | ||
| + | |||
| + | |||
| + | } | ||
| + | |||
| + | |||
| + | </ | ||
| ====== Health ====== | ====== Health ====== | ||
| + | |||
| <code CSharp | Health Script> | <code CSharp | Health Script> | ||