Hello, Unity community.
So I’m building a simple game demo, and I have a main menu with three buttons; two game modes and a tutorial. I want the tutorial to be required before playing the other game modes.
How would I tell my gameManager (empty game object that handles pausing at the moment, and other things in the future) whether the tutorial has been played, and to set the other two buttons to SetActive(false) if it hasn’t? I tried FindGameObjectsWithTag but that apparently puts all the gameObjects in an array, and SetActive doesn’t work on arrays.
Thanks in advance I use C# only by the way