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;
#if UNITY_EDITOR
using UnityEditor;
#endif
public class GameStateManagerController : MonoBehaviour
public class GameStateController : MonoBehaviour
{
[Tooltip("Selected state will be applied when the game starts or on the button press")]
public GameState ChangeToState;
@ -24,20 +23,20 @@ public class GameStateManagerController : MonoBehaviour
}
#if UNITY_EDITOR
[CustomEditor(typeof(GameStateManagerController))]
class GameStateManagerControllerEditor : Editor
[CustomEditor(typeof(GameStateController))]
class GameStateControllerEditor : Editor
{
public override void OnInspectorGUI()
{
DrawDefaultInspector();
var gameStateManagerController = (GameStateManagerController)target;
if (gameStateManagerController == null) return;
var gameStateController = (GameStateController)target;
if (gameStateController == null) return;
//Custom button to change game state from inspector during runtime
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
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 void ChangeState(GameState newGameState)