Game_CodeMM/Assets/00_scripts/Events/TurnScripts/TurnManagerSingleton.cs
2025-11-20 17:20:34 +08:00

39 lines
1.1 KiB
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class TurnManagerSingleton : MonoBehaviour
{
public static TurnManagerSingleton Instance { get; private set; }
[SerializeField] private bool needDebugLog = true;
// public void SetDebugLog(bool value) => needDebugLog = value;
public bool GetNeedDebugLog() => needDebugLog;
public bool GetValueIsNotNull(object value, string errorMessage)
{
if (value != null) return true;
Debug.LogError($"[传值为空]: Variable => [{errorMessage}], Type => [{typeof(object)}]");
return false;
}
public bool GetManagerState(TurnManagerStateEnum srcState, TurnManagerStateEnum targetState)
{
if (srcState == targetState) return true;
Debug.LogError($"[流程验证失败]系统正在执行其他流程: {srcState}, 期望流程: {targetState}");
return false;
}
private void Awake()
{
if (Instance != null && Instance != this)
{
Destroy(gameObject);
return;
}
Instance = this;
DontDestroyOnLoad(gameObject);
}
}