Is there a way to control lighting in MOI?

Next
 From:  Mike (MIKESCHN)
860.1 
Is there a way to control lighting in MOI?

I imported a file, and found that the front side was too dark to work on...

http://www.mikenchell.com/images/moi_dark.png

Mike...
  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
860.2 In reply to 860.1 
Hi Mike, it is possible to set up a keyboard shortcut to change the light direction.

To do it, go to Options / Shortcut keys, and add in a new one. Use whatever key you want (for example, L) - and for the command paste in this:

code:
script:var dir = moi.view.lightDirection; if ( dir.x == 1 && dir.y == 1 && dir.z == -1 ) { dir.set(-0.5,1,0); } else { dir.set(1,1,-1); } moi.view.lightDirection = dir;


Now the light direction will flip between the regular and an alternate direction every time you push L.

There are a variety of other scripts that Petr has collected here: http://kyticka.webzdarma.cz/3d/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
 

Reply to All Reply to All