BOX Editor now forces string case to upper

This commit is contained in:
MattNL
2023-02-20 17:54:38 -05:00
parent 2154a80e33
commit 9e6cff2f04

View File

@@ -24,7 +24,7 @@ namespace PckStudio.Forms.Utilities.Skins
try
{
Parent = arguments[0];
Parent = arguments[0].ToUpper(); // just in case a box has all lower, the editor still parses correctly
Pos.X = float.Parse(arguments[1]);
Pos.Y = float.Parse(arguments[2]);
Pos.Z = float.Parse(arguments[3]);