Fix using nested types in Visual Script

This commit is contained in:
Wojtek Figat
2021-06-30 10:34:36 +02:00
parent 2b891483a5
commit bdefa77226
3 changed files with 3 additions and 3 deletions

View File

@@ -25,7 +25,7 @@ namespace FlaxEditor.Content.Create
private static bool IsValid(Type type)
{
return type.IsPublic && !type.IsSealed && !type.IsGenericType;
return (type.IsPublic || type.IsNestedPublic) && !type.IsSealed && !type.IsGenericType;
}
}