From d510556ed2617b112c58738248b59d122c5173d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Fri, 8 Feb 2008 13:52:00 +0000 Subject: moved supercollider to externals/ svn path=/trunk/externals/supercollider/; revision=9414 --- extMain.sc | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 extMain.sc (limited to 'extMain.sc') diff --git a/extMain.sc b/extMain.sc new file mode 100644 index 0000000..56ec766 --- /dev/null +++ b/extMain.sc @@ -0,0 +1,18 @@ ++ Main { + startup { + super.startup; + // set the 's' interpreter variable to the default server. + interpreter.s = Server.local; + Server.local.options.numOutputBusChannels = 8; + Server.local.options.numInputBusChannels = 8; + Server.local.options.memSize = 8192; + } + + shutdown { // at recompile, quit + //Server.quitAll; + //super.shutdown; + } + + newSCWindow { + } +} -- cgit v1.2.1