Hi, I am new to unreal engine. I am making simple android game for learning unreal engine. In my game I have a level as my 3d main menu. I added widgets to it. But my problem is in my main menu level it shows default virtual joystick with my widgets. But I don’t need them in my main menu but I need them in my game. So how to hide the joystick for main menu or for particular level where I don’t want joystick. Thanks in advance!!!
Hello! You can try to use APlayerController class methods - SetVirtualJoystickVisibility or ActivateTouchInterface with NULL argument
Hello, Kehel18 thanks for your answer it works perfect. But what’s difference between setVirtualJoystickVisibility and ActivateTouchInterface function. Please explain.
As it comes from the names, SetVirtualJoystickVisibility just change visibility, nothing more. ActivateTouchInterface wuth NULL from another hand clean up any existing joystick and remove it from viewport
Thanks for your answer