Re: GetPersonDirection??
Reply #5 –
You can write a script to do that.
function convertSprites()
{
var to_convert = GetFileList("spritesets");
var temp;
for(var i = 0, j = 0; i < to_convert.length; ++i)
{
if(to_convert[i].slice(to_convert[i].length-5,4)==".rss")
{
temp = LoadSpriteset(to_convert[i]);
for (j = 0; j < temp.directions; ++j)
{
temp.directions[j].name = temp.directions[j].name.toLowerCase();
}
temp.save("../other/" + to_convert[i]);
}
}
}
Notes:
1. the converted spritesets will be saved in the folder "other" inside your game's folder the originals won't be overwritten.
2. I haven't tested the above but it should work...