diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2008-02-08 13:52:00 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2008-02-08 13:52:00 +0000 |
commit | d510556ed2617b112c58738248b59d122c5173d5 (patch) | |
tree | fc9c4240fab7150d13114041b0529c26090d4105 /extMain.sc |
moved supercollider to externals/HEADsvn2git-rootsvn2git-headexternals/supercollider
svn path=/trunk/externals/supercollider/; revision=9414
Diffstat (limited to 'extMain.sc')
-rw-r--r-- | extMain.sc | 18 |
1 files changed, 18 insertions, 0 deletions
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 { + } +} |