Jump to content

Recommended Posts

Posted

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.

Posted

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.

  • Upvote 1

Ryzen 9 RX 6800M ■ 16GB XF8 Windows 11 ■
Ultra ■ LE 2.53DWS 5.6  Reaper ■ C/C++ C# ■ Fortran 2008 ■ Story ■
■ Homepage: https://canardia.com ■

Posted

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();

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...