diff --git a/src/EcsJoinQuery.cs b/src/EcsJoinQuery.cs index 11765c3..b093d86 100644 --- a/src/EcsJoinQuery.cs +++ b/src/EcsJoinQuery.cs @@ -28,7 +28,7 @@ namespace DCFApixels.DragonECS private int[] _mapping; private int[] _counts; - private int[] _entites; + //private int[] _entites; private EntityLinkedList _linkedBasket; private bool _isJoinExecuted = false; @@ -124,7 +124,7 @@ namespace DCFApixels.DragonECS _counts = new int[_targetWorldCapacity]; _targetPoolCapacity = _targetPool.Capacity; - _entites = new int[_targetPoolCapacity]; + //_entites = new int[_targetPoolCapacity]; _linkedBasket = new EntityLinkedList(_targetPoolCapacity); } }