[C#] Disable NativeUI mouse?

Hi, I’m looking for disable the mouse on NativeUI. Anyone know, how I can do this ? I have try this but the mouse is correctly disable but I cannot move mouse in the game.

_MainMenu.MouseControlsEnabled = false;

Thanks

You’ll have to disable the ControlDisabling feature.

For example:

UIMenu Menu = new UIMenu("Menu Title", "Menu Subtitle")
{
    MouseControlsEnabled = false,
    MouseEdgeEnabled = false,
    ControlDisablingEnabled = false
};
1 Like

Works thanks you ___

solid thanks