Hidden lines but...
All  1  2-4

Previous
Next
 From:  Michael Gibson
3788.2 In reply to 3788.1 
Hi Pilou, normally you would use a rendering program to control various options for generating an image with particular colors and shading and that kind of stuff.


It's possible to do it somewhat in MoI but MoI is not really designed currently to generate 2D image output directly as a renderer is oriented towards doing.


> So does it possible to disable lights also or other...?
> For have only one color of faces?

It's possible to disable shading by setting custom light levels and entering in very high values for the light intensities, see this example:
http://moi3d.com/forum/index.php?webtag=MOI&msg=3135.3

Doing that will make the objects have their brightest fully illuminated color in every spot, so they will just have their full style color without any light shading happening.


Also for making a wireframe screenshot image this may be of interest:
http://moi3d.com/forum/index.php?webtag=MOI&msg=1049.28


To set that up try the following scripts (taken from the Jun-23-2009 beta release notes here http://moi3d.com/forum/index.php?webtag=MOI&msg=2711.1 ):


quote:
Added a scriptable option for drawing hidden lines with no shading. This can be used in combination with the view capture script for making a different style capture:
script:var v = moi.ui.getActiveViewport(); if ( v != null ) { moi.view.lineWidth = 4; moi.view.shadeMode = 'HiddenLineWireframe'; v.renderToClipboard( 2560, 2560 ); moi.view.lineWidth = 1; moi.view.shadeMode = 'Shaded'; }

Or it can be toggled on or off during regular working with this:
script:moi.view.shadeMode = (moi.view.shadeMode == 'HiddenLineWireframe' ? 'Shaded' : 'HiddenLineWireframe');
For an example see:
http://moi3d.com/forum/index.php?webtag=MOI&msg=1049.28


Hope those help! But if you need more control over generating an image you may need to use a rendering program to produce your image instead of MoI...

- 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

Previous
Next
 From:  Frenchy Pilou (PILOU)
3788.3 In reply to 3788.2 
thx for the tricky tips!

Ps I don't seen the hidden "sliders lights" because that were by default on another lights without slider :)
So very simple solution ! thx again!

EDITED: 25 Sep 2010 by PILOU

  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:  FlashFire
3788.4 In reply to 3788.2 
Ahhhhhh thank you for this script :)
Me likes.....
  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

 

 
 
Show messages: All  1  2-4