Add Uint16 & Int16 names.

This commit is contained in:
Jean-Baptiste Perrier
2021-05-10 22:47:02 +02:00
parent 0d6f81904d
commit 74916dddfd

View File

@@ -725,6 +725,10 @@ namespace FlaxEditor.Scripting
return "Int";
if (_managed == typeof(uint))
return "Uint";
if (_managed == typeof(short))
return "Int16";
if (_managed == typeof(ushort))
return "Uint16";
if (_managed == typeof(bool))
return "Bool";
return _managed.Name;