mirror of
https://github.com/DCFApixels/DragonECS-Unity.git
synced 2025-11-12 23:15:56 +08:00
fix
This commit is contained in:
parent
0d9c0dc8a1
commit
8cfc44e7c6
@ -2,7 +2,6 @@
|
|||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
|
|
||||||
namespace DCFApixels.DragonECS
|
namespace DCFApixels.DragonECS
|
||||||
{
|
{
|
||||||
[DebugHide, DebugColor(DebugColor.Gray)]
|
[DebugHide, DebugColor(DebugColor.Gray)]
|
||||||
@ -27,7 +26,6 @@ namespace DCFApixels.DragonECS
|
|||||||
processesMonitor.pipeline = pipeline;
|
processesMonitor.pipeline = pipeline;
|
||||||
processesMonitor.monitorName = "Processes Matrix";
|
processesMonitor.monitorName = "Processes Matrix";
|
||||||
|
|
||||||
|
|
||||||
//foreach (var item in pipeline.AllSystems) //Вырезано пока не сделаю TODO в SystemDebugMonitor
|
//foreach (var item in pipeline.AllSystems) //Вырезано пока не сделаю TODO в SystemDebugMonitor
|
||||||
//{
|
//{
|
||||||
// DebugNameAttribute debugName = item.GetType().GetCustomAttribute<DebugNameAttribute>();
|
// DebugNameAttribute debugName = item.GetType().GetCustomAttribute<DebugNameAttribute>();
|
||||||
@ -52,6 +50,7 @@ namespace DCFApixels.DragonECS
|
|||||||
#if UNITY_EDITOR
|
#if UNITY_EDITOR
|
||||||
namespace Editors
|
namespace Editors
|
||||||
{
|
{
|
||||||
|
using DCFApixels.DragonECS.Internal;
|
||||||
using DCFApixels.DragonECS.RunnersCore;
|
using DCFApixels.DragonECS.RunnersCore;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
@ -170,7 +169,6 @@ namespace DCFApixels.DragonECS
|
|||||||
{
|
{
|
||||||
if (DebugMonitorPrefs.instance.IsShowHidden)
|
if (DebugMonitorPrefs.instance.IsShowHidden)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
return target.GetCustomAttribute<DebugHideAttribute>() != null;
|
return target.GetCustomAttribute<DebugHideAttribute>() != null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user