From 37714bc2608fa83df0b091fcdae0fee532c497eb Mon Sep 17 00:00:00 2001 From: Textus Date: Thu, 13 Aug 2020 18:13:53 +0300 Subject: [PATCH] Added not supported types example. Classes that has no empty parameters are not supported and not shown(activator can not create instances of them). --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 00d7799..3fea68e 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Project is provided under Mit license which you can find in inner main folder (" 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. +- Can not create instance of class that does not have empty constructor(only have private for example). Known Issues of serialized reference: - Renaming used type can produce data loss and throws unknown managed type exception. This is unity's bug.