Compare commits

..

3 Commits

Author SHA1 Message Date
github-actions[bot] 1f0206e3cc feat: Update package.json to 1.1.4 2022-03-29 10:58:48 +00:00
Makihiro 4b6203b9d9 Merge pull request #11 from chadefranklin/main
Assign result
2022-03-29 19:43:24 +09:00
chadefranklin 1abb5d7e35 Assign result
Fixed bug where clicking on type selection button the first time leads to error.
2022-03-28 20:46:01 -04:00
2 changed files with 3 additions and 2 deletions
@@ -81,7 +81,8 @@ namespace MackySoft.SerializeReferenceExtensions.Editor {
m_TargetProperty.serializedObject.ApplyModifiedProperties(); m_TargetProperty.serializedObject.ApplyModifiedProperties();
}; };
m_TypePopups.Add(managedReferenceFieldTypename,new TypePopupCache(popup,state)); result = new TypePopupCache(popup, state);
m_TypePopups.Add(managedReferenceFieldTypename, result);
} }
return result; return result;
} }
@@ -1,7 +1,7 @@
{ {
"name": "com.mackysoft.serializereference-extensions", "name": "com.mackysoft.serializereference-extensions",
"displayName": "SerializeReference Extensions", "displayName": "SerializeReference Extensions",
"version": "1.1.3", "version": "1.1.4",
"unity": "2019.4", "unity": "2019.4",
"description": "Provide popup to specify the type of the field serialized by the [SerializeReference] attribute in the inspector.", "description": "Provide popup to specify the type of the field serialized by the [SerializeReference] attribute in the inspector.",
"keywords": [ "SerializeReference", "Editor" ], "keywords": [ "SerializeReference", "Editor" ],