fumanshoo Posted December 22, 2012 Posted December 22, 2012 How would I get rid of my cursor? It moves around in the middle of my screen when i'm in third person and I just want to get rid of it. Is there any way to just hide it? EDIT: Also, I'd like to ask how to free my mouse from being stuck in the middle of the screen and how to un-hide it so that I could use it in some wort of menu. Quote
Canardia Posted December 22, 2012 Posted December 22, 2012 HideMouse(); When you want to move the mouse again in menu mode, then have somekind of variable like menuenabled==true, and then it's enabled then don't use MoveMouse() to center the mouse. 1 Quote ■ Ryzen 9 ■ RX 6800M ■ 16GB ■ XF8 ■ Windows 11 ■ ■ Ultra ■ LE 2.5 ■ 3DWS 5.6 ■ Reaper ■ C/C++ ■ C# ■ Fortran 2008 ■ Story ■ ■ Homepage: https://canardia.com ■
Kotov72rus Posted December 23, 2012 Posted December 23, 2012 Cursor in the middle because you are using the function: MouseMove(X,Y); Try to do a background check: bool showMenu; //Loop if(showMenu){ ShowMouse(); } else { HideMouse(); MouseMove(X,Y); } Show cursor: ShowMouse(); Quote
fumanshoo Posted December 23, 2012 Author Posted December 23, 2012 I'm using Lua, so it'd go a little different, but I think I get the main point... Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.