LoginLogin
Nintendo shutting down 3DS + Wii U online services, see our post

Any way to put text in front of sprites?

Root / Programming Questions / [.]

MZ952Created:
It doesn't seem like you can put the text screen in front of sprites. Is there a way to put text at the very front of it all (sprites and GRPs), or is it impossible?

LOCATE x,y,z
Each char has its own Z offset

LOCATE x,y,z
Each char has its own Z offset
*cough cough* WHAT

LOCATE 0,0,-1 PRINT "This text is above the sprite!"
SPSET 0,500
This should work as long as the sprite is at Z 0 or above.