Access "Curve" mode in ShapeFX?
-
How do I access the "Curve" mode in the ShapeFX module?
I can set all the modes using the values 1-8 except "Curve", I thought I should use the value of 9 but it doesn't work, it only shows "Function" see pict.
I use Hise compiled from the scriptnode code from yesterday (september 2)
-
@ulrik I use this command set the different modes:
ShapeFX1.setAttribute(4, value);
However I'm not able to set "Curve" active, what am I doing wrong?
-
@ulrik Ok, after some thinking I used the
Console.print(ShapeFX1.getAttribute(4));
and found out that to activate the "Curve" mode I had to set the value to 32
ShapeFX1.setAttribute(4, 32);
sorry for this thread, it seemed I could figure it out myself