I apologize if this is the wrong place to post this.
I built my game to test on mobile, but I’ve noticed that the MainMenu buttons are clickable while the “Made with Unity” logo is present.
This causes problems because if someone accidentally taps the “Quit game” while the intro is present, it will immediately “crash” the game.
I can disable the buttons in code for X seconds (X being the duration of the intro), but I’m wondering if there are some simple settings to tweak this, and I just missed them.
As far as i know, there isnt some tickbox to check to alter this behavior. There are a few simple ways to fix it though. Some easy ones are like you mentioned, enabling the buttons themselves after X seconds. You could also have a transparent panel that blocks raycasts and gets disabled after X seconds as well. Probably a lot of ways to do it.