How to get the character name from inputfield on different scene ?
I have seen tutorial for it, but it is on the same scene , how can I get the name that I input in Scene 01 to be viewed in Scene 02 ?
Thanks
How to get the character name from inputfield on different scene ?
I have seen tutorial for it, but it is on the same scene , how can I get the name that I input in Scene 01 to be viewed in Scene 02 ?
Thanks
You could save it using PlayerPrefs
// Save the value
PlayerPrefs.SetString("Player Name", "Foobar");
// Get the value
string name = PlayerPrefs.GetString("Player Name");