SuspendOnSilence Missing
-
I have a network which is a ScriptFX in a Container. It's got a bunch of stuff running so I'd like to suspend the processing on silence.
But I can't find the flag anymore. When I right click a node, it's not there.
I tried manually implementing this using a soft bypass node and a timer, but unbypassing on note results in a tiny burp which I think is because of the ramps resetting instead of carrying on as they were on bypass.
-
@aaronventure not sure why it doesn't popup up, but you can just edit the XML and add the attribute manually (then it should pick it up the next time you load it, seems to be a glitch):
<Network ID="script_fx1" SuspendOnSilence="1" Version="0.0.0"> <Node FactoryPath="container.chain" ID="script_fx1" Bypassed="0" Name="script_fx1"> <Nodes> <Node ID="chain" FactoryPath="container.chain" Bypassed="0" Name="chain"> <Nodes/> <Parameters/> </Node> </Nodes> <Parameters/> </Node> </Network>
-
@Christoph-Hart That worked, thanks. Even the ramps behave as they should!