Created
May 20, 2017 17:18
-
-
Save iani/d7798358092790dffe1f03acecdd9bba to your computer and use it in GitHub Desktop.
enable working with remote servers in supercollider
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| *remote { arg name, addr, options, clientID; | |
| var result; | |
| result = this.new(name, addr, options, clientID); | |
| // result.startAliveThread; | |
| result.setRunningTrue; | |
| ^result; | |
| } | |
| setRunningTrue { | |
| serverRunning = true; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment