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:
Is there a way to disable this behavour?
Cheers
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:
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!