Search Issue Tracker
Won't Fix
Won't Fix in 1.0.X
Votes
0
Found in [Package]
1.0.0
Issue ID
ECSB-132
Regression
No
[Entitites] Silent crash when executing ScriptBehaviourUpdateOrder.AppendWorldToCurrentPlayerLoop()
Reproduction steps:
1. Open the attached project “EntitiesCrash”
2. Click Crash > Trigger crash
3. Move the cursor to Scene view
Expected result: Script is executed
Actual result: Editor crashes
Reproducible with: 1.0.0-exp.12 (2022.2.1f1)
Could not test with: 0.17.0-preview.42 (2022.2.1f1) (Console errors after witching to 0.17.0-preview.42 :Library\PackageCache\com.unity.platforms@0.10.0-preview.10\Editor\Unity.Build\BuildArtifacts.cs(7,24): error CS0234: The type or namespace name 'Editor' does not exist in the namespace 'Unity.Properties' (are you missing an assembly reference?))
Reproducible on: Windows 10
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
- Color picker does not show the correct color when selecting color on the moving object
- “Asset X has no meta file, but it's in an immutable folder. The asset will be ignored.” errors are thrown when importing package with files not listed in package.json's "files" property
- There is no way to adjust the HDR Paper White value of the Unity Editor's interface, making it difficult/uncomfortable for some developers to work on very dark/bright scenes in HDR
- Animator window has a dropdown button that throws “MissingReferenceException” error on a new project when the previous project had a GameObject with an animation
- Animator State name overflows outside the visual box when the State has a long name
Resolution Note:
There are no fixes planned for this Bug
Resolution Note (1.0.X):
The crash is not in AppendWorldToCurrentPlayerLoop(); it is a stack overflow in TestSystem.OnUpdate(). I believe the intent here was to call base.OnUpdate(), but instead the system calls base.Update() (which in turn calls OnUpdate(); this loop leads to a stack overflow.