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:08:55 -04:00
parent fae251718d
commit 22d1983ee3
17 changed files with 421 additions and 422 deletions

View File

@@ -36,7 +36,7 @@ namespace PckStudio.Core.Serializer
public void Serialize(Animation animation, ref PckAsset asset)
{
string anim = SerializeAnim(animation);
asset.SetProperty("ANIM", anim);
asset.SetParameter("ANIM", anim);
Image texture = SerializeTexture(animation);
asset.SetTexture(texture);
}