Hi Brian, re: rigid not working -
The factory is expecting a boolean true/false property for that parameter, not a string, so change:
factory.setInput( 5, 'rigid' );
to instead be:
factory.setInput( 5, true );
If you see in the UI that it's using a checkbox control hooked into the property, that's going to give a true/false value out of it.
- Michael
|