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
- Unrecognized identifier DECLARE_STACK_CB error is thrown when VirtualTexture Property is used with Custom RenderTexture target
- SpriteShapeController.OnWillRenderObject() is ~20 ms when using SpriteShapeController.BakeMesh() and never updating the spline
- Editor freezes briefly when "multi-selecting" TextMeshPro GameObjects In the Hierarchy window in Prefab Mode, if 5 or more Inspector windows are open
- OnEndDrag event not triggered when losing Editor focus during simultaneous Left and Right mouse drag
- Texture displays visual artifacts and has a broken aspect ratio when it is imported in RGB 48-bit format
Add comment