Difference between revisions of "ShaderLightness (CMS)"

From The Official Visionaire Studio: Adventure Game Engine Wiki
(Created page with "{| class="ts" style="width:100%" |- ! style="text-align:left" | Name !! style="text-align:left" | Type |- | shaderLightness(value, delay) || Execution |} Allows the user to...")
 
m (Text replacement - "{{toc}}" to "")
Line 43: Line 43:
 
| [[media:shaderLightness.zip|shaderLightness.zip]] || A working .ved file, complete with resources. Check out the readme.txt file for instructions.
 
| [[media:shaderLightness.zip|shaderLightness.zip]] || A working .ved file, complete with resources. Check out the readme.txt file for instructions.
 
|}
 
|}
{{toc}}
 

Revision as of 01:50, 4 November 2014

Name Type
shaderLightness(value, delay) Execution


Allows the user to adjust the screen lightness over a specified amount of time. The shader toolkit is required for this function to work.


Examples

Enable

Adjust screen lightness value

shaderLightness(0.1, 3000) -- adjust screen lightness over 3000 milliseconds
shaderLightness(0.1, 0) -- adjust screen lightness instantly

Disable

Restore default screen lightness value

shaderLightness(0, 3000) -- restore screen lightness over 3000 milliseconds
shaderLightness(0, 0) -- restore screen lightness value back to default instantly


Syntax Breakdown

Name Type Description
value float (decimal) Define the lightness value; number between -1 & 1 (0 = default).
delay integer (number) The amount of time to adjust the screen lightness value over; in milliseconds (ms).


Resources

Name Description
shaderLightness.zip A working .ved file, complete with resources. Check out the readme.txt file for instructions.