Loading nodes inside the HardcodedMasterFX loaded into the Effect Slot
-
Can I load the nodes inside the
HardcodedMasterFX
loaded into theEffect Slot
with the script?I see
Synth.getSlotFX()
in the API, but I couldn't figure it out. -
@JulesV You're half way there already. You will want to check out the SlotFX API.
But basically, after you declare it as an Effect Slot you can set the network by its string identifier:
HardcodedMasterFX.setEffect("NameOfYourScriptnodeNetwork");
-
@HISEnberg Oh, I see now. Thanks.