Sprites List
Is it possible to get a list with the sprites in the sprites tab in your code?
Is it possible to get a list with the sprites in the sprites tab in your code?
the easiest way is to refer to sprites["name_sprite"] . You can also iterate through the entire object.
for spr in sprites
print("name( string ) = " + spr)
print("object =")
print(sprites[spr])
end
There is also another way if this one is not enough for you.
Thanks this is what i need