How to change processorID of AHDSR floating tile?
-
I'm sure I've done this before but I can't remember now. I know I have to do something with the tile data... any ideas?
-
I think it might just be this?
const var tileData = { "ProcessorId": "AHDSR Envelope1", "Index": -1 }; const var ScriptFloatingTile1 = Content.getComponent("ScriptFloatingTile1"); ScriptFloatingTile1.setContentData(tileData);
-
@Lunacy-Audio Doesn't work unfortunately
-
I figured it out
floatingTile.set("Data", "{\r\n \"ProcessorId\": \"envelopeId"\",\r\n \"Index\": -1\r\n}");
-
Yikes, that looks wild
-
@Casey-Kolb Just came back to this for another project and figured I'd try to make it work using your idea. I found the missing piece of the puzzle. You must include the floating tile type.
const tileData = { "Type":"AHDSRGraph", "ProcessorId": "sampler1GainAHDSR", "Index": -1 };
-