using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class scenechange : MonoBehaviour
{
public void sceenchanger(){
SceneManager.LoadScene(“1”);
}
}
It displays message of not loaded and any idea why is that so ?