From d1abb9d647af4903016ab54e44c4e62ac7de02da Mon Sep 17 00:00:00 2001 From: Mikhail <99481254+DCFApixels@users.noreply.github.com> Date: Sun, 23 Apr 2023 11:52:46 +0800 Subject: [PATCH] refactoring --- src/EcsJoinQuery.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } }