Fix referent properties not being generated.
This commit is contained in:
parent
1e5540d151
commit
8ab02cf2a2
Binary file not shown.
@ -668,11 +668,13 @@ namespace RobloxFiles
|
||||
fieldName = "Bevel Roundness";
|
||||
|
||||
PropertyType propType = PropertyType.Unknown;
|
||||
|
||||
if (Property.Types.ContainsKey(fieldType))
|
||||
propType = Property.Types[fieldType];
|
||||
else if (fieldType.IsEnum)
|
||||
|
||||
if (fieldType.IsEnum)
|
||||
propType = PropertyType.Enum;
|
||||
else if (Property.Types.ContainsKey(fieldType))
|
||||
propType = Property.Types[fieldType];
|
||||
else if (typeof(Instance).IsAssignableFrom(fieldType))
|
||||
propType = PropertyType.Ref;
|
||||
|
||||
if (propType != PropertyType.Unknown)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user