The UI for Unity's SerealizedReference attribute. It allows to change the instance type of field right in editor.
Go to file
Textus 1e8f80077f Added not supported types example.
Classes that has no empty parameters are not supported and not shown(activator can not create instances of them).
2020-08-13 18:10:25 +03:00
Assets Added not supported types example. 2020-08-13 18:10:25 +03:00
.gitignore Created new brunch. Plug in Rider's version control 2020-05-16 18:18:03 +03:00
README.md Update README.md 2020-08-13 17:31:20 +03:00

UnitySerializedReferenceUI

The UI for Unity's SerealizedReference attribute. It allows to change the instance type of field right in editor.

Project is provided under Mit license which you can find in inner main folder ("SerializedReferenceUI")

Known limitations.

  • Custom property drawer has no effect. Becouse property is drawn from custom attribute drawer custom property drawer is not applied (unity default behaviour).
  • 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.

Known Issues of serialized reference:

  • 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;

Future plans: Possibly

  • copy / paste.
  • menu with searchbar.