set rotoBezier property via scripting
I'm creating AE paths from data, setting the paths to rotobezier mode gives nice curvey shapes that fit through the data points.
Running into issues though when I try and set this via jsx. If I manually change the rotobezier mode for a mask, I can query the rotoBezier property:
myLayer = mainComp.layers.byName('my cool layer');
mask = myLayer.property('Masks').property('Mask 1');
alert(mask.rotoBezier);but if I try and set it:
mask.rotoBezier=true;I can query it and see that its true, even the menu option under Layer -> Mask and Shape path -> Rotobezier has the tick next to it to show its active, but the comp itself doesn't change mode.
Further, if I try the same thing but with a path instead of mask, I can't get it to return any value, and I definitely can't get it to update in the comp.
Any ideas?
