Is there a video tutorial of how to compile SNEX? I am trying to follow along with this tutorial on the forums, but It is very wordy and difficult to follow...
E
Latest posts made by eokeefee
-
RE: Hand Code a FX blockposted in Scripting
-
Hand Code a FX blockposted in Scripting
I want to create my own custom FX block, similar to a ScriptFX, but I want to actually code it (like directly modify the wave using Hise’s Scripting Language). Is there a way to do this? I cannot find any tutorials that aren’t just using the scriptnode editor
-
RE: Button Script not working...posted in Scripting
@d-healey Thank you, I must have missed that in the docs
-
Button Script not working...posted in Scripting
I'm trying to make it so when I press a button it bypasses a scriptfx, and does some logic I need to script. Right now I have it correctly bypassing the scriptfx, but when I try to do simple logic it doesn't call the function.
//Bypass Button: Console.print("Check!"); inline function onBypassControl(component, value) { Console.print("Do Logic"); }; Content.getComponent("Bypass").setControlCallback(onBypassControl);The console output looks like this even after pressing the button multiple times:
Interface: Check! Interface: Compiled OKCan anybody help?