Fix native internal type name for deeply nested types

This commit is contained in:
2024-05-11 15:46:47 +03:00
parent 8d89b9efb0
commit 77e29109ee

View File

@@ -98,7 +98,7 @@ namespace Flax.Build.Bindings
{
var result = NativeName;
if (Parent != null && !(Parent is FileInfo))
result = Parent.FullNameNative + '_' + result;
result = Parent.FullNameNative.Replace("::", "_") + '_' + result;
return result;
}
}