Search Issue Tracker
By Design
Votes
0
Found in [Package]
0.5.0-prev.17, 0.5.1-prev.11
Issue ID
1218417
Regression
No
[ECS] Subscene DestroyEntity with LinkedEntityGroup fails to clean up and throws error on exiting Play mode
How to reproduce:
1. Open attached project "EcsTextureAtlas.zip" and scene "SampleScene"
2. Enter Play mode
3. Exit Play mode
4. Observe Console window (might need to repeat the steps 2 and 3 multiple times)
Expected result: no errors are thrown
Actual result: "ArgumentException: DestroyEntity(EntityQuery query) is destroying entity Entity(29:1) which contains a LinkedEntityGroup and the entity Entity(29:1) in that group is not included in the query" is thrown
Reproducible with: 2019.3.1f1, 2020.1.0a23 (0.5.0-prev.17, 0.5.1-prev.11)
Could not test with: 2017.4, 2018.4 (due to package errors in the console window)
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
- ScrollView speed is slower when entering Play mode
- UI Builder elements disappear and "Semantic - Unknown template name" error appears when changes to "Template" parameter are saved
- Renderers outside Light Probe hull use incorrect Ambient Probe values when "Renderer Light Probe Selection" is set to "Use Ambient Probe" and "Light Probes" on Mesh is set to "Blend Probes"
- ArgumentNullException error occurs when selecting a Camera in the Hierarchy with the Scene view open
- Clicking 'Open Editor Log' through the Console fails to open redirected Logs when relative Log files exist outside of the Project root
Resolution Note:
The behavior is unfortunate, but expected. The error happens when exiting playmode, because that disables a subscene component which means that it will unload itself. The subscene contains entities that a system will add additional entities to and store them in a LinkedEntityGroup. The entity in the subscene describes what text to render and the system creates entities for the text rendering (or similar). The LinkedEntityGroup in this case is probably used because this allows you to disable the root and it will disable the rest. This is not the intended usage of LinkedEntityGroup. Entities in a linked group must be part of the same subscene section.