style: put game manager editor extension class in a separate file

This commit is contained in:
cuqmbr 2022-03-20 20:43:58 +02:00
parent 3a15ce6718
commit 77eb1bc578
3 changed files with 38 additions and 24 deletions

View File

@ -1,9 +1,5 @@
using UnityEngine;
#if UNITY_EDITOR
using UnityEditor;
#endif
public class GameStateController : MonoBehaviour
{
[Tooltip("Selected state will be applied when the game starts or on the button press")]
@ -22,24 +18,7 @@ public class GameStateController : MonoBehaviour
// Change game state back to entry state when exiting playing mode
GameStateManager.Instance.ChangeState(GameState.Enter);
}
}
#if UNITY_EDITOR
[CustomEditor(typeof(GameStateController))]
class GameStateControllerEditor : Editor
{
public override void OnInspectorGUI()
{
DrawDefaultInspector();
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(gameStateController.ChangeToState);
}
}
}
#endif
public void ChangeState(string newStateStr) =>
GameStateManager.Instance.ChangeState((GameState) System.Enum.Parse(typeof(GameState), newStateStr));
}

View File

@ -0,0 +1,24 @@
#if UNITY_EDITOR
using UnityEditor;
using UnityEngine;
#endif
#if UNITY_EDITOR
[CustomEditor(typeof(GameStateController))]
class GameStateControllerEditor : Editor
{
public override void OnInspectorGUI()
{
DrawDefaultInspector();
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(gameStateController.ChangeToState);
}
}
}
#endif

View File

@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: 515312156c02a0c279cced733921e2f3
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant: