/
Multilight example
Multilight example
This script shows how to use the Multilight API through scripting.
It opens an MXI file, parses all the lights and changes their intensity to 500 Watts
Example
// This script shows how to use the Multilight API through scripting // It opens an MXI file, parses all the lights and changes their intensity to 500 Watts Maxwell.openMxi( "C:\multilight_test.mxi" ); var nLights = Multilight.getLightsCount(); for( var i = 0; i < nLights; i++ ) { if( Multilight.isLightMuted( i ) == false ) { Multilight.setLightEmissionType( i, 0 ); // Custom emitter Multilight.setLightLuminanceType( i, 0 ); // Watts Multilight.setLightIntensity( i, 500 ); } } Multilight.refreshAllLights(); // Upload viewers ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Related content
Multilight example
Multilight example
More like this
Introduction and interface
Introduction and interface
More like this
Introduction and interface
Introduction and interface
More like this
Multilight functions
Multilight functions
More like this
Multilight functions
Multilight functions
More like this
Photoshop - Action
Photoshop - Action
More like this