This is my first Unity forum post, apologies if it’s posted in the wrong section!
I keep getting “Frequently Used” overlay while using the Simulator (which replaces the Game window for testing on mobile devices), please see the attached image.
It is annoying because it interrupts the gameplay testing, and I cannot find a way to stop it from happening, please help?
Thank you!
Attachment:
Please, yes, this. For the love. At the very least provide a clear “close” option for it.
2 Likes
Ctrl + backspace will toggle it on and off
And on Android, you can toggle it by 3 fingers double tap rapidly
2 Likes
Has anybody found a GOD DAMN WAY to disable this permanently? I am using mouse and it C O N S T A N T L Y pops up making gameplay testing a DAMN NIGHTMARE
1 Like
Thanks @hazzm55 I’m getting it using Unity Remote on Android. It’s the Rendering Debugger.
2 Likes
After some digging i found the solution, thanks to @RealHandy suggesting that it was happening because of the Rendering Debugger instead of the Simulator.
To fix this issue, you simply search for the DebugManager script in your Project files (Search: All) then change the following code to ‘false’. That should fix this issue.
private bool m_EnableRuntimeUI = true;
3 Likes