HideImage function?

Blitz3D Forums/Blitz3D Programming/HideImage function?

TroM(Posted 2004) [#1]
Is there a function to hide an image (from DrawImage), beside changing the position off screen?


Rob(Posted 2004) [#2]
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.


TroM(Posted 2004) [#3]
Ah ok got it, draw it or not after render... thanks...