Answers for "stop unity editor playing"

C#
2

stop unity editor playing

//C# public static class AppHelper
{     
  #if UNITY_WEBPLAYER     
    public static string webplayerQuitURL = "http://google.com";
  #endif     
    
  public static void Quit()     
  {         
    #if UNITY_EDITOR         
      UnityEditor.EditorApplication.isPlaying = false;                
    #endif     
    } 
}
Posted by: Guest on May-24-2020

C# Answers by Framework

Browse Popular Code Answers by Language