Hi, im making my first game in unity, the thing is that i want to make a menu, in the menu, the user will have to enter his nick, and after clicking “Login” i want the nick to appear in a Text box on the op of the second scene.
Thanks
Hi, im making my first game in unity, the thing is that i want to make a menu, in the menu, the user will have to enter his nick, and after clicking “Login” i want the nick to appear in a Text box on the op of the second scene.
Thanks
Use the InputField’s onValueChanged or onEndEdit events to transfer the string someplace safe (Some manager to save it in memory, PlayerPrefs or whatever you want) and then when the next scene load, when the object starts, take that string and display it.