Learn programing by creating your own language:
Download tutorial assets:
Download Unity3d project for this lecture:
Download final build for Android:
Download final Unity3d project:
Tutorial playlist:
In this lecture we will make a New Game button functional, so that it will just restart our scene and this way a new game will be started for our player. I will also start creating the script called ScoreTracker.cs that will take care of storing player scores and showing them in the ScoreHUDs.
Nguồn: https://focuscampus.org/
Xem thêm bài viết khác: https://focuscampus.org/game/
Been following this great tutorial as a new user,
At this point Unity 5.5. the Application.LoadLevel is obsolete…
had to use
SceneManager.LoadScene ("MainScene");
and include the using UnityEngine.SceneManagement; namespace at the top
Wouldn't it be better for the New Game button to reset the tiles and score instead of reloading the level?