Update of /cvsroot/pure-data/supercollider In directory sc8-pr-cvs1:/tmp/cvs-serv7775
Added Files: extMain.sc Log Message: Various tools to make supercollider more convenient to use within PD
--- NEW FILE: extMain.sc --- + 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 { } }