refactor: tweaks to game state manager to improve workflow

This commit is contained in:
cuqmbr 2022-03-19 19:05:31 +02:00
parent 8db6b9d050
commit cb41bb6841
3 changed files with 7 additions and 8 deletions

View File

@ -1,11 +1,10 @@
using System;
using UnityEngine; using UnityEngine;
#if UNITY_EDITOR #if UNITY_EDITOR
using UnityEditor; using UnityEditor;
#endif #endif
public class GameStateManagerController : MonoBehaviour public class GameStateController : MonoBehaviour
{ {
[Tooltip("Selected state will be applied when the game starts or on the button press")] [Tooltip("Selected state will be applied when the game starts or on the button press")]
public GameState ChangeToState; public GameState ChangeToState;
@ -24,20 +23,20 @@ public class GameStateManagerController : MonoBehaviour
} }
#if UNITY_EDITOR #if UNITY_EDITOR
[CustomEditor(typeof(GameStateManagerController))] [CustomEditor(typeof(GameStateController))]
class GameStateManagerControllerEditor : Editor class GameStateControllerEditor : Editor
{ {
public override void OnInspectorGUI() public override void OnInspectorGUI()
{ {
DrawDefaultInspector(); DrawDefaultInspector();
var gameStateManagerController = (GameStateManagerController)target; var gameStateController = (GameStateController)target;
if (gameStateManagerController == null) return; if (gameStateController == null) return;
//Custom button to change game state from inspector during runtime //Custom button to change game state from inspector during runtime
if (GUILayout.Button("Change State")) if (GUILayout.Button("Change State"))
{ {
if (Application.isPlaying) GameStateManager.Instance.ChangeState(gameStateManagerController.ChangeToState); if (Application.isPlaying) GameStateManager.Instance.ChangeState(gameStateController.ChangeToState);
} }
} }
} }

View File

@ -20,7 +20,7 @@ public class GameStateManager
//Current game state //Current game state
public GameState CurrentGameState { get; private set; } public GameState CurrentGameState { get; private set; }
//Create a delegate and event to be able to easily react on change of game state from any script //Create an event to be able to easily react on change of game state from any script
public event Action<GameState> OnGameStateChange; public event Action<GameState> OnGameStateChange;
public void ChangeState(GameState newGameState) public void ChangeState(GameState newGameState)