What it does
material.setEmissiveIntensity sets EmissiveIntensity on a material object. It takes id and v.
Signature
material.setEmissiveIntensity(id, v)Arguments
idv
Example · generated
function start() { material.createStandard('standard'); material.setEmissiveIntensity('standard', 0.5);}material.createStandard is there to give the call something to act on; material.setEmissiveIntensity is the line that matters. The code sits in start(), which the engine calls once, when the entity spawns.