mirror of
https://github.com/DCFApixels/DragonECS-Graphs.git
synced 2025-09-17 19:24:36 +08:00
fixes
This commit is contained in:
parent
f2df21bcdc
commit
f813257f28
@ -1,9 +1,10 @@
|
||||
using System;
|
||||
using DCFApixels.DragonECS.Core;
|
||||
using System;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
namespace DCFApixels.DragonECS
|
||||
{
|
||||
public class EcsJoinExecutor : EcsQueryExecutor, IEcsWorldEventListener
|
||||
public class EcsJoinExecutor : MaskQueryExecutor, IEcsWorldEventListener
|
||||
{
|
||||
private long _lastWorldVersion;
|
||||
|
||||
@ -13,6 +14,10 @@ namespace DCFApixels.DragonECS
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
get => _lastWorldVersion;
|
||||
}
|
||||
public override bool IsCached
|
||||
{
|
||||
get { throw new NotImplementedException(); }
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Callbacks
|
||||
|
@ -1,4 +1,5 @@
|
||||
using DCFApixels.DragonECS.Graphs.Internal;
|
||||
using DCFApixels.DragonECS.Core;
|
||||
using DCFApixels.DragonECS.Graphs.Internal;
|
||||
using DCFApixels.DragonECS.UncheckedCore;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
@ -6,7 +7,7 @@ using System.Runtime.CompilerServices;
|
||||
|
||||
namespace DCFApixels.DragonECS
|
||||
{
|
||||
public sealed class EcsJoinToSubGraphExecutor : EcsQueryExecutor, IEcsWorldEventListener
|
||||
public sealed class EcsJoinToSubGraphExecutor : MaskQueryExecutor, IEcsWorldEventListener
|
||||
{
|
||||
private EntityLinkedList _linkedList;
|
||||
private Basket[] _baskets;
|
||||
@ -33,6 +34,10 @@ namespace DCFApixels.DragonECS
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
get { return _graph; }
|
||||
}
|
||||
public override bool IsCached
|
||||
{
|
||||
get { throw new NotImplementedException(); }
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region OnInitialize/OnDestroy
|
||||
|
Loading…
Reference in New Issue
Block a user