Where is the mouse pointer?

Blitz3D Forums/Blitz3D Programming/Where is the mouse pointer?

BlitzGamer(Posted 2003) [#1]
I'm programming a gui in blitz 3d, but I can't find the mouse pointer when it's not in debug mode.


Bot Builder(Posted 2003) [#2]
The mouse pointer won't show up in fullscreen mode. it will in windowed mode. If you want to use it in fullscreen, then you need to have an image follow it around.


Andy(Posted 2003) [#3]
look up the mousex() and mousey() commands.

Andy


BlitzGamer(Posted 2003) [#4]
Allright, I fixed it. Instead of

Graphics 1024,768

I put

Graphics 1024,768,3

For a resizable screen.