Feature - add juices #7

Closed
BoxOfPandor wants to merge 6 commits from feat/add-juices into feat/level/create-level-1
Showing only changes of commit faf2f92521 - Show all commits

View File

@@ -153,7 +153,11 @@ public class RetroMainMenuUI : MonoBehaviour
CreateTextButton(buttonGroup.transform, "> TERMINATE_PROCESS", TextNormalColor, textWarningColor, () => CreateTextButton(buttonGroup.transform, "> TERMINATE_PROCESS", TextNormalColor, textWarningColor, () =>
{ {
Debug.Log("Quit clicked."); Debug.Log("Quit clicked.");
#if UNITY_EDITOR
UnityEditor.EditorApplication.isPlaying = false;
#else
Application.Quit(); Application.Quit();
#endif
}); });