Add .sc as a SuperCollider file extension

This commit is contained in:
Paul Chaignon
2014-10-22 10:16:30 -04:00
parent 2a66b754c2
commit b6a9993c97
5 changed files with 696 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
WarpPreset {
*new {|path|
if(path.notNil) {
^Object.readArchive(path);
};
^super.new.init();
}
init {
}
save {
Dialog.savePanel({|path|
this.writeArchive(path);
});
}
}