Hi Andrei, normally you would use the Scene Browser to show/hide all curves, use the eye icon on the "Curves" entry that's under the Types section of the scene browser.
Here's also a script that will do it too though:
script: /* Toggle visibility of all curves */ var objs = moi.geometryDatabase.getObjects().getCurves(); var ishidden = objs.length > 0 ? objs.item(0).hidden : false; objs.setProperty( 'hidden', !ishidden );
- Michael
|