Files
aibis-dream/Assets/Scripts/Utility/GlobalVariableKit.cs
T
2025-05-02 14:30:04 +08:00

24 lines
761 B
C#

using UnityEngine;
namespace AibisDream.Utility
{
public static class GlobalVariableKit
{
public static bool IsPlugHighLight
{
// get => !(StorageSystem.Instance.TryGetValue("$global.IsPlugHighLight", out bool res) && res);
// set => StorageSystem.Instance.SetValue("$global.IsPlugHighLight", !value);
get => false;
set => Debug.Log(value);
}
public static bool IsCordHighLight
{
// get => !(StorageSystem.Instance.TryGetValue("$global.IsCurdHighLight", out bool res) && res);
// set => StorageSystem.Instance.SetValue("$global.IsCurdHighLight", !value);
get => false;
set => Debug.Log(value);
}
}
}