Sprite Animations Overlaying?
I am experiencing some issues where instead of animating normally my sprite decides to overlay all of its frames at the same time. I only coded in basic code from the tutorials, nothing extra or crazy. I'm wondering if it's just me or something I did wrong (somehow in one line of code)?
You forgot screen.clear() perhaps?
that does not seem to fix the issue, thank you though.
init = function()
end
update = function()
end
draw = function()
screen.drawSprite( "sprite",0,0,16,32)
end
As I said nothing crazy, only one line of code and I'm breaking it lol. This is all I have done TvT
You forgot screen.clear() 😂
draw = function()
screen.clear()
screen.drawSprite( "sprite",0,0,16,32)
end