Я работаю над сценарием смерти для своей игры в Unity. Я сделал 3D Box без текстур под моим уровнем и сделал его Collider isTrigger = true
. Теперь я добавил в поле скрипт, который перезагружает текущую сцену, когда игрок входит в триггер. Это 2 строки кода, и я не знаю почему, но я получаю сообщение об ошибке:
Assets\scripts\death.cs(20,32): error CS0103: The name 'currentScene' does not exist in the current context
Код:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class death : MonoBehaviour
{
void Start()
{
Scene currentScene = SceneManager.GetActiveScene();
}
private void OnTriggerEnter(Collider other)
{
SceneManager.LoadScene(currentScene.buildIndex);
}
}