S
S
Shallmick2021-05-03 16:30:25
Unity
Shallmick, 2021-05-03 16:30:25

How to load a specific scene in unity2D?

For example, if you press the F1 button, here is my code, but it loads the following scenes, this is not very convenient. Pzh do not write something like look in Google.

using UnityEngine.SceneManagement;

void Update()
{
if (Input.GetKey(KeyCode.F1))
{
SceneManager.LoadScene(SceneManager.GetActiveScene().buildIndex + 1);
}
}

Answer the question

In order to leave comments, you need to log in

2 answer(s)
V
Vitaliy, 2021-05-15
@Alexander_020

SceneManager.LoadScene(konkretnayascena);

G
GavriKos, 2021-05-03
@GavriKos

Look not in Google - look in the unity documentation. Right here on the SceneManager.LoadScene method, the documentation has EVERYTHING YOU NEED

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question