Discord
Login
Community
DARK THEME

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.

ManlyPineHelp

Show your code.

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 

Post a reply

Progress

Status

Preview
Cancel
Post
Validate your e-mail address to participate in the community