2020-05-16 12:33:46 +03:00
# UnitySerializedReferenceUI
The UI for Unity's SerealizedReference attribute. It allows to change the instance type of field right in editor.
2020-05-16 13:20:45 +03:00
2020-05-16 16:17:04 +03:00
Project is provided under Mit license which you can find in inner main folder ("SerializedReferenceUI")
2020-05-16 20:24:41 +03:00
Known limitations.
2020-05-26 11:26:53 +03:00
- Custom property drawer has no effect. Becouse property is drawn from custom attribute drawer custom property drawer is not applied (unity default behaviour).
2020-08-13 17:31:20 +03:00
- Can not serialized types derived from UnityEngine.Object (monbehaviour, scriptableObject) (unity's limitation).
- Can not create instance of object that does not have empty constructor.
2020-05-16 20:24:41 +03:00
2020-05-26 11:19:59 +03:00
Known Issues of serialized reference:
2020-05-26 11:26:53 +03:00
- Renaming used type can produce data loss and throws unknown managed type exception. This is unity's bug.
- SerializeReference itself is not working properly with Prefab Instances;
2020-05-16 20:26:50 +03:00
Future plans:
Possibly
- copy / paste.
- menu with searchbar.