Pressing both joysticks opens some sort of debug menu when playing on Editor

Hello,

I am testing a game on the Editor where I have an input consisting of pressing both joystics on the controller but when I do that it also opens a debug menu:

8746944--1184790--upload_2023-1-21_16-33-48.png

Is there a way to disable this behavour?

Cheers

Does it do that in a blank project? If not then it might be some third-party package in your game.

If it does it in a blank project, perhaps it is some operating system driver thing? Does it do it outside of Unity? In other games?

So after doing a global search it seems that it is something related to the HDRP. If I just create the HDRP Sample Project this menu thing happens.

I think this is related:

One of the posts shows how you can disable it with DebugManager.instance.enableRuntimeUI = false;.

That did it! Thanks!