From 5a2a3440f0c4558258c19a694e1c5d550db06a37 Mon Sep 17 00:00:00 2001 From: "Kjetil S. Matheussen" Date: Tue, 20 Jan 2004 16:56:23 +0000 Subject: Various tools to make supercollider more convenient to use within PD svn path=/trunk/; revision=1271 --- supercollider/extMain.sc | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 supercollider/extMain.sc (limited to 'supercollider/extMain.sc') diff --git a/supercollider/extMain.sc b/supercollider/extMain.sc new file mode 100644 index 00000000..56ec7660 --- /dev/null +++ b/supercollider/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