Search Issue Tracker
By Design
Votes
0
Found in [Package]
0.0.12-preview.24
Issue ID
1133331
Regression
No
[ECS] ComponentGroup.SetFilterChanged() does not filter unchanged components or buffers from the group
How to reproduce:
1. Open the attached project ("case_1133331-setfilterchange-bug")
2. Open the repro scene ("SampleScene")
3. Enter Play Mode
4. Inspect the console
Expected results: one "Updating player from history..." can be seen for every "touched history" log
Actual results: the job which has "Updating player history" runs no matter what
Reproducible with: 2018.3.9f1, 2019.1.0b7, 2019.2.0a7
Reproducible Package versions:0.0.12-preview.24, 0.0.12-preview.27
Notes:
1. Couldn't test with 2017.4 because it does not support ECS
2. Couldn't test with earlier ECS versions because of package 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
- Crash on RaiseException when opening a specific project
- DownloadHandlerScript.CompleteContent is called twice when building for WebGL
- Scene view has Y coordinates of the Screen Position node flipped when some of the URP features are disabled
- 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
Resolution Note:
This is expected behavior in the repro case. The repro case calls a system's Update() inside of another systems's Update(), which is going to throw off version number tracking. We've confirmed that if the two updates are called side by side in a SystemGroup, then the changed filter works as intended. We will investigate making this behavior clearer, but the behavior will not change.