What is the recommended way to switch/present a new menu? Do you go like this:
mainMenu.SetActive(false);
optionsMenu.SetActive(true);
What if you want to have the main menu slide off and the options menu to fade in? Also, if the main menu is sliding off then can’t the buttons still be pressed while the menu is sliding (which would result in bugs)? Should you use Mecanim for this type of stuff?