Renamed PCK "Properties" to "Parameters"

there's a lot of things with this name scheme in this program so definitely possible i missed something.
This commit is contained in:
MayNL
2026-04-01 19:35:03 -04:00
parent fae251718d
commit 22d1983ee3
17 changed files with 421 additions and 422 deletions
+1 -1
View File
@@ -140,7 +140,7 @@ namespace PckStudio.Core.Skin
public static bool IsOverlayPart(string type) => OverlayTypes.Contains(type);
public KeyValuePair<string, string> ToProperty()
public KeyValuePair<string, string> ToParameter()
{
return new KeyValuePair<string, string>("BOX", ToString());
}
+1 -1
View File
@@ -72,7 +72,7 @@ namespace PckStudio.Core.Skin
return new SkinPartOffset(type, value);
}
public KeyValuePair<string, string> ToProperty()
public KeyValuePair<string, string> ToParameter()
{
string value = $"{Type} Y {Value}";
return new KeyValuePair<string, string>("OFFSET", value.Replace(',', '.'));