Search Issue Tracker
By Design
By Design in 2017.1.X
Votes
12
Found in
2017.1.1p2
Issue ID
956330
Regression
No
Undo.RecordObject fails to properly record new list elements if the object is a prefab instance
How to reproduce:
1. Download attached project file
2. Create a new GameObject and add an "AnimationPlayer" script to it.
3. Turn this new GameObject into a prefab by dragging it into the assets view.
4. Select Prefab in Hierarchy window and press the "Add 2D Blend Tree" button in Inspector (Important! Don't apply changes after adding the 2D blend tree.)
5. Enter Play Mode
Actual result: When a MonoBehaviour is an instance of a Prefab, Undo.RecordObject fails to properly record some details when adding objects to a list, causing data to be lost when entering Play Mode or leaving the scene. The same changes will be applied properly if the MonoBehaviour is not a part of a prefab.
In technical detail; if the MonoBehaviour is a Prefab, an addition to a List<Foo> where Foo is a serializable class causes the prefab override to store the new List size, but no information about the new element.
Reproduced with: 2017.1.2f1, 2017.2.0f3, 2017.3.0b3
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
- WebGL Player with WebGPU Graphics API fails to render Scene when custom Render Feature is used
- “EndLayoutGroup” error thrown when changing Shader Precision Model settings in Build Profiles window > Player Settings Overrides
- Button hover state uses default theme color when a custom .uss is applied
- Samples Showcase script warning does not clear after enabling required settings until GameObject is reselected
- VFX Particles receive shadow artifacts when using ShaderGraph with enabled shadows and Face Camera Plane Orient mode
MorCompediaNet
Dec 12, 2017 18:31
Just adding in that this is true not only for lists of custom types, but also lists of strings and primitives.
Also, arrays don't work either, it seems to be a problem with generic collections.