Is it possible to see only the wireframe and turn off shading on the viewports?

 From:  Michael Gibson
2549.2 In reply to 2549.1 
Hi Jonzker, it is possible to do that by hiding all faces with this script:

script:var breps = moi.geometryDatabase.getObjects().getBReps(); var hide = true; for ( var i = 0; i < breps.length; ++i ) { var faces = breps.item(i).getFaces(); if ( i == 0 ) hide = !faces.item(0).hidden; faces.setProperty( 'hidden', hide ); }

Set that up on a keyboard shortcut under Options / Shortcut keys, and press it a second time to toggle them back on.

But it only really works just for viewing, you can't select objects when all their faces are hidden so you can't really do modeling work with all faces hidden like that currently.

- Michael