We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 806d525 commit 32e0cc3Copy full SHA for 32e0cc3
src/Tests/ECS/Entity/Test_CopyEntity.cs
@@ -25,7 +25,7 @@ public static void Test_CopyEntity_CloneStore_subset()
25
store.CreateEntity(new Position(5,5,5)); // 5
26
27
// Query will copy only entities [2, 4]
28
- var query = store.Query().AllTags(Tags.Get<TestTag>());
+ var query = store.Query().AnyTags(Tags.Get<TestTag>());
29
foreach (var entity in query.Entities) {
30
// preserve same entity ids in target store
31
if (!targetStore.TryGetEntityById(entity.Id, out Entity targetEntity)) {
0 commit comments