Search Issue Tracker
By Design
By Design in 2023.1.X
Votes
0
Found in
2022.2.5f1
2023.1.0b3
Issue ID
UUM-26342
Regression
No
"The provided object cannot be assigned a managed reference ID because it cannot be serialized on a [SerializeReference] field." thrown in the Console window when using SerializationUtility.SetManagedReferenceIdForObject with an Enum value
How to reproduce:
- Open the attached project "SerializeReferenceEnum.zip"
- Select Assets/New MyObject.asset
- Click "Assign Managed Reference id using SerializationUtility" in the Inspector window
Expected results: No errors thrown
Actual results: "The provided object cannot be assigned a managed reference ID because it cannot be serialized on a [SerializeReference] field." thrown in the Console window
Reproducible with: 2022.2.5f1, 2023.1.0b3
Could not test with: 2020.3.44f1, 2021.3.17f1, 2022.1.24f1 (compilation errors in the Console window)
Reproducible on: Windows 10
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
- Out-of-bounds memory access with multiple CanvasRenderers under a Canvas when using Mesh API
- Inspector tries to access file after it was deleted when the file was locked in Inspector window
- Changing Transform values in Search window Inspector loses focus while dragging and stopping mouse without releasing dragging action
- Saving changes on the dirty VFX Graph during the Play mode throws "The referenced script (Unknown) on this Behaviour is missing!" warnings
- VFX Graph Debug Info overlaps the "Initialize" block debug info by default
Resolution Note:
The value assigned to a field with SerializedReference attribute has to be marked by [Serializable], i.e. the enums in the repro project must have [Serializable] attribute.
Resolution Note (2023.1.X):
The value assigned to a field with SerializedReference attribute has to be marked by [Serializable], i.e. the enums in the repro project must have [Serializable] attribute.