Posted: 29th Sep 2011 21:50
I have a loop where I move a sprite acorss the screen.
First I draw the playfield (10x10 sprites) with a gosub drawplayfield
Then I draw my moving sprite by gosyb moveSprite.

The first time my move sprite is on top of my playfield but after that it is behind.

How do I set the priority?

In my loop I draw the playfield before the moving sprite.
Posted: 29th Sep 2011 21:56
Just use SetSpriteDepth()
Posted: 29th Sep 2011 22:41
Super thanks!
Still learning