-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Don't see any way to pass sclang options #120
Comments
running into this as well |
Hello, really sorry everyone for the late response. The documentation does have broken links and I didn't manage to get it to link all the options arguments correctly. Language interpreterhttps://crucialfelix.github.io/supercolliderjs/#/packages/lang/SCLang The options are: supercolliderjs/packages/lang/src/options.ts Lines 19 to 33 in 2e7c2b4
default options are: supercolliderjs/packages/lang/src/options.ts Lines 63 to 100 in 2e7c2b4
audio Serverhttps://crucialfelix.github.io/supercolliderjs/#/packages/server/Server The https://github.com/crucialfelix/supercolliderjs/blob/develop/packages/server/src/options.ts#L90-L136 |
You pass the options in
|
thx! Got it working. |
The option seems to be ignored. I boot with: const sc = require("supercolliderjs");
sc.server.boot({
scsynth: '/Applications/SuperCollider.app/Contents/Resources/scsynth',
sclang: '/Applications/SuperCollider.app/Contents/MacOS/sclang'
}).then(async server => { but it still fails with the error:
Notice that it tries to open /Application**/SuperCollider/**SuperCollider.app/ despite me explicitly passing the correct path in the boot options. By the way, the path I'm passing (without the nested |
I found a way to specify scsynth executable path, but I don't see a similar way to specify sclang path.
Get the following error when trying to run the very first example from docs:
PS: Sure I have SC installed, but I have x64 version and it's located in different folder, so I need a way to provide executable path
The text was updated successfully, but these errors were encountered: