2024-03-10 06:19:20 +08:00
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
namespace DCFApixels.DragonECS.Unity.Editors
|
|
|
|
|
{
|
|
|
|
|
[MetaColor(MetaColor.Gray)]
|
2024-06-13 18:04:47 +08:00
|
|
|
|
[MetaGroup(EcsUnityConsts.PACK_GROUP, EcsConsts.DEBUG_GROUP)]
|
|
|
|
|
[MetaDescription(EcsConsts.AUTHOR, "...")]
|
|
|
|
|
[MetaTags(MetaTags.HIDDEN)]
|
2024-10-12 21:03:19 +08:00
|
|
|
|
[MetaID("75CCB6809201450CA3E1F280CB1EB0E7")]
|
2024-03-10 06:19:20 +08:00
|
|
|
|
internal class PipelineProcessMonitor : MonoBehaviour
|
|
|
|
|
{
|
|
|
|
|
private EcsPipeline _pipeline;
|
|
|
|
|
public EcsPipeline Pipeline
|
|
|
|
|
{
|
|
|
|
|
get { return _pipeline; }
|
|
|
|
|
}
|
|
|
|
|
public void Set(EcsPipeline pipeline)
|
|
|
|
|
{
|
|
|
|
|
_pipeline = pipeline;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|