# Shader: rendinst_emissive
## Overview
This shader is designed for self-illuminating surfaces.
This shader supports the [flickering
effect](../../lighting/flickering_lights.md).
**Parameters:**
- `use_alpha_for_emission_mask=1` – Uses the alpha channel of the albedo as an
emission mask. Values: `0`/`1`.
- `emissive_color=1,1,1,1` – Specifies the emissive color and intensity.
- The first three components represent the color (RGB)
- The fourth component is the intensity. If the intensity is negative, the
emission mask is inverted.
- `emission_albedo_mult=1` – Multiplies the emissive color by the albedo color.
Values range from `0` to `1`.
- `nightly=0` – Emission only occurs at night. Values: `0`/`1`.
## Textures
- **tex0:** Diffuse
- **tex2:** Normals
The alpha channel of the diffuse color texture can be used to store the emission
mask (areas that emit light are white).
## Application
- **Entire Model**: Apply the shader to the entire model if you want widespread
emissive elements, such as simulating light reflections from a bulb on
chandelier parts. In this case, using an emission mask is recommended.
- **Specific Parts**: Alternatively, apply the shader only to specific glowing
parts of the model. The emission mask may not be necessary in this scenario.
By default, the emissive color is derived from the albedo color.
## Parameters
```{important}
This shader often requires custom parameter settings for each asset, rather than
reusing values from other assets. Therefore, it's important to configure the
parameters specifically for your use case. Do not blindly copy parameters from
other assets.
```
- `use_alpha_for_emission_mask=1`
This parameter controls the use of the albedo’s alpha channel as the emission
mask.
- `1`: The alpha channel of the albedo is used as the emission mask.
- `0`: The entire geometry with the shader emits light.
use_alpha_for_emission_mask=1 |
use_alpha_for_emission_mask=0 |
---|---|
Only the areas defined by the albedo's alpha channel will emit light. |
The entire geometry emits light. The difference in color is due to the non-red parts of the albedo where the emission fades out according to the mask, while the entire geometry emits light (including the grey areas). |
emissive_color=0,1,0,1 |
emissive_color=0,1,0,10 |
---|---|
Green emissive color is applied. In the Asset Viewer, it is barely noticeable, but it is very strong in-game. |
A strong green emission is applied. The glow effect in-game is very prominent. |
emission_albedo_mult=0 |
emission_albedo_mult=0.5 |
emission_albedo_mult=1 |
---|---|---|
No multiplication with albedo color. The shader’s emissive color is green. Results in a green emissive layer over the red albedo, leading to a yellow color in the Asset Viewer. The in-game result is correct. |
Multiplies the albedo color by 50%. The shader’s emissive color is green. The in-game glow intensity is reduced by half due to the interaction of two contrasting colors. |
Full multiplication with the albedo color. The shader’s emissive color is green. Almost no emission is visible since (0,1,0) * (1,0,0) = (0,0,0). Increasing emission intensity (e.g., to 10 or 100) may improve visibility, but this is not a proper solution and will likely not look correct. |