Search Issue Tracker
Fixed in 5.4.0
Votes
0
Found in
Issue ID
736726
Regression
No
Code-created TerrainData marked with "HideFlags.DontSave" crashes editor on exit
Steps to reproduce:
1. Open attached project's scene "Test".
2. Exit Unity Editor.
3. Editor crashes.
Crash is caused by HideFlags.DontSave:
[ExecuteInEditMode]
public class Test : MonoBehaviour
{
public void OnEnable()
{
var data = new TerrainData();
data.hideFlags = HideFlags.DontSave;
}
}
Reproduced on Windows 10 (64 bit) with 5.3.0b3 (b6181bece87a), 5.2.2f1 (f5cc61d36935), 5.2.0f2 (d7f8e5b3cbb5b)
Fix verified on 5.4.0a4 (426f677d5fa7)
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Articulation Body with 'Revolute' Joint Type has erratic behavior when Upper Limit is set to above 360
- WebGL Player fails to render Scene when Terrain with Detail Mesh is added and WebGPU Graphics API is used
- Inconsistent errors are logged when different types are passed into the Query "Q<>" method in UIToolkit and the ancestor VisualElement is null
- Crash on GetMaterialPropertyByIndex when opening a specific Scene
- Discrepancies in the styling are present when using a TSS file instead of a USS file in custom EditorWindow
Add comment