Trim command

 From:  Michael Gibson
2606.3 In reply to 2606.1 
Hi Rob, also re: Lighting - that is something that I want to tweak and have some different options for.

Right now one thing that can help is to set up a keyboard shortcut which will switch the light direction around.

To do that, go to Options / Shortcut keys, and add in a new entry. Put in whatever you want for the key, like maybe L , and then for the command part paste this in (this is all one long line to paste in):

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;

Then if you are looking at an area that is dark, hit L and the light will flip to a different direction which will tend to be dark in other areas than that one.

That may help you currently.

- Michael