예제 #1
0
 static void StopREPL()
 {
     AsyncRepl.StopListening();
     EditorApplication.update -= AsyncRepl.Update;
     Debug.Log("Stopped Clojure REPL");
 }
예제 #2
0
 static void StartREPL()
 {
     AsyncRepl.StartListening();
     EditorApplication.update += AsyncRepl.Update;
     Debug.Log("Started Clojure REPL");
 }