Posts

Showing posts from October, 2021

Day1

Change Scene    using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.SceneManagement; public class NewBehaviourScript : MonoBehaviour {     public void NextScene(){         SceneManager.LoadScene("PreviousScean");     }     public void PreviousScean(){         SceneManager.LoadScene("SampleScene");     } }

Unity Tutorial - How to create a Quiz Game [Part 1/7] - UI

Image