Short for lighting options
All  1-11  12

Previous
 From:  Michael Gibson
2907.12 In reply to 2907.9 
Hi Al, so here are a few more examples.

You can set each of these scripts as the command part of a keyboard shortcut to set a batch of lighting properties in one keypress.



Set default lighting:

script: /* Set to default light */ var v = moi.view; v.lightingStyle = 'Default'; v.specularHighlights = false; v.specularBrightness = 0.5; v.specularFocusSize = 0.5; v.metallicLighting = false; v.fixedLightPositions = false;



Set to "Key + more fill" style, with specular:

script: /* Set lighting options */ var v = moi.view; v.lightingStyle = 'MoreFill'; v.specularHighlights = true; v.specularBrightness = 0.5; v.specularFocusSize = 0.5; v.metallicLighting = false; v.fixedLightPositions = false;



Set to "Key + more fill" style, with specular + metallic:

script: /* Set lighting options */ var v = moi.view; v.lightingStyle = 'MoreFill'; v.specularHighlights = true; v.specularBrightness = 0.5; v.specularFocusSize = 0.5; v.metallicLighting = true; v.fixedLightPositions = false;



You can make any number of these, so that you can have a batch of lighting properties set all in one keypress.


- 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

 

 
 
Show messages: All  1-11  12