I have created a menu on Unity using the built in UI components,I can't create this on a seperate scene because I used the toggle button, which basically when you click it, it spawns a specific object (I have 4 of these toggle buttons). I have completed making the menu on the my current scene. My problem is that when I start on runtime, the menu appears in front of the first person character controller, and when I move the mouse to click the toggle, the camera controller follows the mouse movement. How do I fix this? Also when I click all of the toggle buttons, I want the UI to dissapear, so it isn't shown when I am playing the game because atm when I click the toggle buttons, the actual buttons stay on the screen whilst I am navigating around the scene, is there any way to make this invisible?
|
I solved this problem in several different games with the state machine approach. Your game has at least two different UI states in which it reacts differently to user input:
It might have even more states you didn't mention or aren't aware yet that you will need them. For example what almost every game needs once in a while is a null-state in which most input is ignored. Implement each of these different input-states as a separate MonoBehaviour. Create another script The advantage of this method is that you achieve loose coupling between your different input states and can easily add a new one without touching the code of the existing ones. |
||||
|
I'll tell you what I did. I had a bool in the camera scripts that says wither the camera should rotate or not so lets call it bool shouldRotateCamera = true; And when you pop the menu, wither its by using Esc button or any other way, you can change that value in camera script to this.shouldRotateCamera = false; In the update method of camera script always check if(shouldRotate == true) otherwise Don't rotate it! Regarding the UI technically you can just enable disable it, on Esc button pressed or any other button that you want. If there are any questions, feel free to |
|||
|