Julian Rohrhuber
Julian Rohrhuber
That means we should exclude `]` and `[` from having a settable fadeTime at all?
>We all have different taste, it seems :) maybe! I also change it sometimes. Is `idx` used a lot in some world specifically? >Tbh., I find `\synthIndex`, `\index`, and `\nestingDepth`...
>numChans I don't think it's worth those few letters. >pos yes, maybe `pos` and `slot`? Or `pos` and `i`? >depth yes, depthnitely.
We could use this conversation to discuss what information we could pass to the synth / settings about the syntactic context. 1. simple character count (possibly omitting spaces, parentheses, etc....
@LFSaw do you have an idea where we have introduced this problem? I'll try and fix it, but maybe you have a hint.
There is a problem around here: https://github.com/musikinformatik/Steno/blob/master/Classes/StenoSignal.sc#L108
probably the silence is detected earlier and the synth freed earlier then …
some corrections: 1. `inputSignal` – input to filter (first argument in user-settable function) (maps to `in` arg). 2. `oldSignal` – previous signal on bus (not necessarily the same as inputSignal,...
>why is the freeselfwhensilent happening _before_ the mix? because after the mix of the previous bus signal (`oldSignal`), it might never become silent. Probably we need to combine the `mix`...
btw. I've just moved the routing function from Steno to StenoSignal, for clarity.