Search Issue Tracker
By Design
Votes
0
Found in [Package]
0.0.12 - preview.21
Issue ID
1111477
Regression
No
EntityArchetypeQuery is updated only when ComponentGroup exists with same ComponentType even though if it has no entities
Reproduction steps:
1. Open the project inside "TurnBasedBattle.zip"
2. Open Entity Debugger at Window -> Analysis - Entity Debugger
3. Inside of the Entity Debugger click on the "Editor World" and then enable "Show Inactive Systems"
4. Open and Play "TurnedBasedBattle" scene
5. Click on the "Load field" inside Game window
Expected: Entity Debugger shows that TLTBattleElementUpdatingSystem system is running
Actual: EntityDebugger shows that TLTBattleElementUpdatingSystem is not running, this is because no ComponentGroup exists assigned to the same ComponentType
Reproduced on: 2018.3.7f1, 2019.1.0b4, 2019.2.0a6
Cannot reproduce on earlier than 2018.3.0f2 versions due to Project fragility
Could not test on Windows build because of building errors
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Volumetric fog shader variants are missing from build when "Strict Shader Variant Matching" is disabled
- Unnecessary modifications clutter the Scene when using a RectTransform driven by a LayoutGroup in a Prefab
- Files in the target folder are deleted without a proper warning when building an iOS project
- Character animation freezes when toggling animator on/off in a coroutine
- Certain textures are incorrectly marked in the render pass list when observed through Render Graph Viewer
Resolution Note:
This behavior is by design. Store the appropriate ComponentGroups in your system for whatever data you would like to process. If you wish to do system culling manually, [AlwaysUpdate] attribute allows the the system to update on it's own.