V2 beta Jun-23-2009 available now

 From:  Michael Gibson
2711.14 In reply to 2711.13 
Hi Will - I'm glad the surface assignments and scene browser are working
well for you! Hopefully that will save time.

Quick note re: headlight - yeah you can actually have a pointing-straight-forward
headlight in MoI if you want, if you set up a keyboard shortcut.

To do that, go to Options / Shortcut keys and add in a new entry. For the key
put in whatever you want, but maybe L would be a good choice to be short
for Light. Or whatever you will remember.

Then for the command part, paste in the following:
code:
script:/* Toggle between headlight and regular light directions */ var dir = moi.view.lightDirection; if ( dir.x == 1 && dir.y == 1 && dir.z == -1 ) { dir.set(0,1,0); } else { dir.set(1,1,-1); } moi.view.lightDirection = dir;

Then when you hit L you should have your headlight set up.

- Michael