Search Issue Tracker
Won't Fix
Votes
0
Found in
2019.4
2020.3
2021.2
2021.2.0f1
2022.1
Issue ID
1376739
Regression
No
Declared default values of a class are ignored when declaring it in another class
How to reproduce:
1. Open the user's attached "2021 Empty" project
2. Open the "Test" Scene
3. Select the "Main Camera" GameObject in the Hierarchy
4. Observe the "New Behaviour Script" Component in the Inspector
Expected result: The "Test Generic" and "Test Inherited" fields' values are the same
Actual result: The "Test Inherited" fields' values are correct (i.e., the "Value" is equal to 7 and the "Default Value in Generic" is equal to 15), whereas all the values of the "Test Generic" fields are equal to zero
Reproducible with: 2019.4.34f1, 2020.3.25f1, 2021.2.7f1, 2022.1.0b2
Note:
- The default values are visible from a child class
- Resetting the Component doesn't fix the issue
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
- Code runs slower when using a cached exception instance compared to creating a new one
- Broken UI in Default Preset Add Section of "Preset Manager" window
- [iOS] The Player freezes when closing the Notification Center and quickly swiping down from top
- Crash on Texture2D:SetPixelImpl when rapidly calling Texture2D.Apply()
- Graph Lines are not rendered when using Experimental GraphView or GridBackground
Resolution Note:
Serialization of generic is unfortunately not supported at this time as mentioned here https://docs.unity3d.com/Manual/script-Serialization.html
How to ensure a custom class can be serialized
Ensure it:
Is not generic, though it may inherit from a generic class