SetLightIntensity

(Difference between revisions)
Jump to: navigation, search
Vegas (Talk | contribs)
(Created page with "Modify the light intensity. Example 1 : With the help of a timer, the light intensity will increase & decrease over time. Light0 = getObject("Light0") t = 0 --...")
Newer edit →

Revision as of 02:53, 11 April 2012

Modify the light intensity.

Example 1 : With the help of a timer, the light intensity will increase & decrease over time.

   Light0 = getObject("Light0") 
   t = 0	
   -- Scene update
   function onSceneUpdate()
       flash = getLightIntensity(Light0)
       t = t + 1
       if t < 50 then setLightIntensity(Light0, flash+0.02) end
       if t > 50 then setLightIntensity(Light0, flash-0.02) end
       if t == 100 then t = 0 end
       print(t)
   end
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox