1.11.0: Added FieldLabelFromToString
This commit is contained in:
parent
a804633a14
commit
3a825efa2a
7 changed files with 39 additions and 1 deletions
|
|
@ -495,6 +495,10 @@ namespace Module.Inspector.Editor
|
|||
switch (property.propertyType)
|
||||
{
|
||||
case SerializedPropertyType.Generic:
|
||||
#if UNITY_6000_0_OR_NEWER
|
||||
if (property.boxedValue != null)
|
||||
return property.boxedValue.ToString();
|
||||
#endif
|
||||
break;
|
||||
case SerializedPropertyType.Integer:
|
||||
return property.intValue.ToString();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue