统一命名规范private变量_filedInfo

This commit is contained in:
Alex-Rachel
2025-03-08 19:44:06 +08:00
parent 9b72cbcb7c
commit 6cf5aa46c1
67 changed files with 1093 additions and 1170 deletions

View File

@@ -281,16 +281,16 @@ namespace GameLogic
#region
private static bool m_isInit = false;
private static bool _isInit = false;
private static void CheckInit()
{
if (m_isInit == true)
if (_isInit == true)
{
return;
}
m_isInit = true;
_isInit = true;
_updateDriver ??= ModuleSystem.GetModule<IUpdateDriver>();
_updateDriver.AddUpdateListener(OnUpdate);
@@ -304,12 +304,12 @@ namespace GameLogic
private static void DeInit()
{
if (m_isInit == false)
if (_isInit == false)
{
return;
}
m_isInit = false;
_isInit = false;
_updateDriver ??= ModuleSystem.GetModule<IUpdateDriver>();
_updateDriver.RemoveUpdateListener(OnUpdate);