S.options and waitforboot

Hello -

I’m having a small issue with waitForBoot - I think I must be forgetting something… I would like to change the settings, boot the server, and then hear a sine oscillator playing. Currently, any adjustment to s.options seems to prohibit the sine wave.

(
s.options.blockSize = 1024;

s.waitForBoot (
	{SinOsc.ar(400)}.play;
	
	)
)

It’s not s.waitForBoot ( instructions ).

It should be s.waitForBoot { instructions }.

The wait for boot action must be a function.

hjh

1 Like