NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Gameplay/Debug/SROptions.DisplayID.cs

22 lines
459 B
C#
Raw Normal View History

2024-01-08 13:13:35 +08:00
using System.ComponentModel;
using Framework;
2024-01-08 13:13:35 +08:00
public partial class SROptions
{
2025-02-24 15:16:36 +08:00
[Category("通用"),DisplayName("图标上ID显示")]
2024-01-08 13:13:35 +08:00
public bool IsDisplayId
{
get { return _isDisplayId; }
set
{
_isDisplayId = value;
DisplayIDForCeHua.IsDisplayID = value;
EventManager.Instance.Send(EventManager.EventName.DebugHeadRoleID);
2024-01-08 13:13:35 +08:00
}
}
private bool _isDisplayId = false;
}