Hello,
I have the following problem:
When Im pressing play all scenes with all GameObjects get loaded.
My Target however is I to load just the Menu-Scene, because I get an Yellow Error that I have multiple Eventsystems in one scene because they get loaded all together.
First I had the short solution with
Start()
{
SceneManager.loadScene(“MenuScene”)
}
which destroys the other Scenes, but this is obviously not a good solution because for a short time the other scenes still get loaded and I get still the Error (multiple Eventsystems in one scene)
So is there a way to solve this?
Thx
for the people who have the same problem:
you arent supposed to have multiple scenes in your hierachy. If so all your scenes in hierachy get loaded together