Como carregar a unidade da cena ativa
using UnityEngine.SceneManagement;
using UnityEngine;
public class PlayerMovement : MonoBehaviour
{
void LoadScene()
{
SceneManager.LoadScene(SceneManager.GetActiveScene().buildIndex);
}
}
Attractive Alligator