Problems with DrawImage

Blitz3D Forums/Blitz3D Programming/Problems with DrawImage

ChrML(Posted 2003) [#1]
I want a mousepointer function in my mainmenu (a scene rendered behind, and a menu infront), but the mousepointer seems to only be drawn where the camera is not rendered (I saw that when I only rendered the camera at the upper part of the screen). How can I get the mousepointer visible inside the 3darea too? Note: It must be possible to mask the image.


podperson(Posted 2003) [#2]
Use DrawImage to draw the cursor after rendering the scene but before flipping


ChrML(Posted 2003) [#3]
Thanks, that worked ;).