refactoring

This commit is contained in:
Mikhail 2023-05-28 05:53:37 +08:00
parent 77027c64db
commit 977d387d57

View File

@ -106,6 +106,7 @@ namespace DCFApixels.DragonECS
private void WarningMissedInjections() private void WarningMissedInjections()
{ {
#if DEBUG
foreach (var item in _notInjected) foreach (var item in _notInjected)
{ {
foreach (var systemRecord in _systems[item]) foreach (var systemRecord in _systems[item])
@ -113,6 +114,7 @@ namespace DCFApixels.DragonECS
EcsDebug.PrintWarning($"in system {EcsDebugUtility.GetGenericTypeFullName(systemRecord.target.GetType(), 1)} is missing an injection of {EcsDebugUtility.GetGenericTypeFullName(item, 1)}."); EcsDebug.PrintWarning($"in system {EcsDebugUtility.GetGenericTypeFullName(systemRecord.target.GetType(), 1)} is missing an injection of {EcsDebugUtility.GetGenericTypeFullName(item, 1)}.");
} }
} }
#endif
} }
private readonly struct FiledRecord private readonly struct FiledRecord