Search Issue Tracker
Duplicate
Votes
0
Found in
5.1.2f1
Issue ID
719100
Regression
No
Creating a prefab from object which has rigidbody and MonoBehaviour with constructor attached causes crash
Steps to reproduce:
1. Open "RigidbodyCrash.zip" project
2. Open scene "bug"
3. Drag "GameObject" from hierarchy to project tab to create a prefab
4. Observe a crash
Workaround: Don't use constructors for MonoBehaviours. Instead, use Start() or Awake() for initialization.
Comments (1)
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
- “X” button in Editor version search filter is difficult to see when Unity Hub theme is set to Dark
- [Android] The y-value of Input.mouseScrollDelta is positive when scrolling in both directions in the Player
- Crash on TexturesD3D11Base::SetTexture when using DirectX11
- URP _EMISSION keyword removed from Material when Global Illumination is set to None
- Adding “Entities Graphics Stats Drawer (Script)” Component in Inspector spams “InvalidOperationException: using UnityEngine.Input with Input System active” errors in the Console window
Pharan
Aug 19, 2015 02:18
You're not supposed to define constructors for MonoBehaviours.