Character selection with scene changing ,Charakter Saving mit Scenenwechsel
English My English is not so good but i try to explain it. I have two scences one for the charactermenu and one for the game. In my game scene is an GameObject where all my Prefabs are ( the characters ) and on top of it is the first script that you can see under the text. The script for the shop is very long but if it helps to solve my problems then i will sent it to. I tried it with DontDestroyOnLoad but that didnt help me out. When bouth things are in the same Scene then it works perfect but if they are in separated scenes it woudnt work. And my second problem is that I have a respawn button but when I press it everything settles and deactivates itself. The second Script is my Respawn Script but my first problem is more important. Thank s for reading and for understanding my bad Englisch. I am really sorry for that but i would be very happy if someone would answer my. German Hallo, Ich habe ein Charakterauswahlmenü von einem Freund programmiert bekommen. Das Script beinhaltet schon eine Speicherung der Charaktere zB. wenn man das Spiel neu startet bleiben die gekauften Charakter gekauft. Jedoch weiß ich nicht wie der Charakter gespeichert wird wenn man in eine andere Scene wechselt. Ich habe es schon mit DontDestroyOnLoad ausprobiert aber irgendwie will das nicht so funktionieren wie ich mir das vorgestellt habe. Um kurz mein Projekt zu erklären: Ich habe ein GameObject das dieses Script beinhaltet:
private void OnEnable()
{
CharacterSelector.OnCharacterSelected += playerSelected;
}
private void OnDisable()
{
CharacterSelector.OnCharacterSelected -= playerSelected;
}
private void playerSelected(string characterName)
{
foreach(Transform child in transform)
{
child.gameObject.SetActive(child.name == characterName);
}
}
In dem GameObject sind dann meine Prefabs also die Charaktere. Wenn das Game Object in der gleichen Scene wie das Charakterauswahlmenü ist dann funktoniert alles und ich kann meine Charaktere problemlos auswählen aber sobalt sich das GameObject in einer anderen Scene befindet geht es nicht mehr. Wenn das Script für das Auswahlmenü wichtig ist um mir zu helfen dann poste ich es auch gerne nochmal rein, da es aber sehr lang ist wollte ich das erstmal keinem antun :)
Und mein 2 Problem ist das die Auswahl auch immer deaktiviert wird wenn ich auf Restart drücke Hier mein Restart Script:
public void Restart()
{
SceneManager.LoadScene(SceneManager.GetActiveScene().name);
}
Ich liebe es zu programmieren und würde mich über jede Antwort freuen, denn ich bin noch ein Anfänger und dementsprechend noch nicht so erfahren im programmieren. Ich weiß es sehr zu schätzen das andere sich die Zeit nehmen das Problem zu lösen und mir damit zu helfen. Danke :)
please how the whole script. those two snippets do not provide enough information!
Your answer
Follow this Question
Related Questions
Save and load scene from file 2 Answers
Loading and Saving High Score 1 Answer
LoadScene not working 0 Answers
How Do I Get a Reference To An Object In Another Scene In A Field In The Inspector? 4 Answers
Virtual Pet Game 1 Answer