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
- “Remove Unused Overrides” available on not loaded Scene and throws “ArgumentException: The scene is not loaded” warning
- Adaptive Probe Volume occlusion edge is calculated incorrectly when viewing probes near geometry edges
- Sampling a texture using an HLSL file throws shader errors and the code does not compile
- "Graphics.CopyTexture called with null source texture" error when Base Camera of an Overlay Camera is removed with DX11 Graphics API and Compatibility Mode enabled
- WebGL sends wrong value with large numbers when SendMessage function is used
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.