Just started learning SuperCollider, I have a question about Bus.
2 lines executed in the following order produce a FM sound :
({Out.ar(0, SinOsc.ar(500 + (In.ar(5,1) * 1000),0,0.1))}.scope; // Carrier
{Out.ar(5, SinOsc.ar(550,0,1))}.scope;) // Modulator
But with an opposite execution order, it only produces a Sine tone, as if no modulator presents. In scope, there is signal in Bus 5.
({Out.ar(5, SinOsc.ar(550,0,1))}.scope; // Modulator
{Out.ar(0, SinOsc.ar(500 + (In.ar(5,1) * 1000),0,0.1))}.scope;) // Carrier
What’s the reason behind this behaviour? Thanks.