View attachment 3031393
'People' can barely use search bars here and you expect them to know their way around their OS/filesystem? lol
But yes, ideally %variables% should be used instead of <yournamehere> in addresses, and also putting it in explorer's address bar
P.S.
I posted it before, but here is a script you can use to export all spine sprites using UTMT.
UTMT/Scripts/ResourceUnpackers/ExportAllSpineSprites.csx
Code:
using System.Text;
using System;
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using UndertaleModLib.Util;
EnsureDataLoaded();
string folder = GetFolder(FilePath) + "Export_Spine_Sprites" + Path.DirectorySeparatorChar;
string GetFolder(string path)
{
return Path.GetDirectoryName(path) + Path.DirectorySeparatorChar;
}
if (!Directory.Exists(folder))
Directory.CreateDirectory(folder);
for (int i = 0; i < Data.Sprites.Count; i++)
{
if (Data.Sprites[i].IsSpineSprite)
{
if (Data.Sprites[i].SpineTextures.Count > 0)
{
foreach (var tex in Data.Sprites[i].SpineTextures.Select((tex, id) => new { id,tex }))
{
File.WriteAllBytes(folder + Data.Sprites[i].Name.Content + "_" + tex.id + ".png", tex.tex.PNGBlob);
}
File.WriteAllText(folder + Data.Sprites[i].Name.Content + ".json", Data.Sprites[i].SpineJSON);
File.WriteAllText(folder + Data.Sprites[i].Name.Content + ".atlas", Data.Sprites[i].SpineAtlas);
}
}
}
ScriptMessage("Done!\n\nSpine sprites exported to " + folder);