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

Next
 From:  Jonzker
2549.1 
Is there a script for that, if so ? help plz, thanks
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
 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
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged
 

Reply to All Reply to All