Is there a function to hide an image (from DrawImage), beside changing the position off screen?
HideImage function?
Blitz3D Forums/Blitz3D Programming/HideImage function? This is how drawimage works.
When you drawimage, it perminantly stamps an image onto a larger blank image (the backbuffer).
So therefore the concept is - can I clear the screen and redraw the ones I still want to show? not can I hide something...
So the key is to draw or not to draw, after cls.
When you drawimage, it perminantly stamps an image onto a larger blank image (the backbuffer).
So therefore the concept is - can I clear the screen and redraw the ones I still want to show? not can I hide something...
So the key is to draw or not to draw, after cls.
Ah ok got it, draw it or not after render... thanks...