changed to change it in property UI

This commit is contained in:
Chandler Cox
2022-12-29 15:21:48 -06:00
parent f52e76fe30
commit cf908fcfeb
2 changed files with 6 additions and 3 deletions

View File

@@ -912,6 +912,12 @@ namespace FlaxEditor.Utilities
{
var c = name[i];
if (i == 0)
{
sb.Append(char.ToUpper(c));
continue;
}
// Space before word starting with uppercase letter
if (char.IsUpper(c) && i > 0)
{