I wanted to know if there is a way to lock the cursor on one specific type. For example, when the player dies and gets the Death Screen how do I make it so they can only use the Pointer cursor?
mouse.DisableMode(eModeTalkto);
mouse.DisableMode(eModeLookat);
mouse.DisableMode(eModeWalkto);
mouse.DisableMode(eModeInteract);
mouse.UseModeGraphic(eModePointer);
and this when you're done...
mouse.EnableMode(eModeLookat);
mouse.EnableMode(eModeWalkto);
mouse.EnableMode(eModeTalkto);
mouse.EnableMode(eModeInteract);
mouse.UseModeGraphic(eModeInteract);
Thank you.