Just uploaded my new game, be awesome to get some feedback:
Here are some of the cool things I did:
- The game has a sweet little loop
- Quit works like a dream. The code is below. Not mine it’s just from How do I make the quit button work for WebGL?
public void Quit()
{
#if (UNITY_EDITOR || DEVELOPMENT_BUILD)
Debug.Log(this.name + " : " + this.GetType() + " : " + System.Reflection.MethodBase.GetCurrentMethod().Name);
#endif
#if (UNITY_EDITOR)
UnityEditor.EditorApplication.isPlaying = false;
#elif (UNITY_STANDALONE)
Application.Quit();
#elif (UNITY_WEBGL)
Application.OpenURL("about:blank");
#endif
}