GFXVolumetric Fog
gfx.volumetric_fog.get_emission
Client
Retrieves the current emission color of the volumetric fog post-processing effect
Syntax
local color = gfx.volumetric_fog.get_emission()Parameters
| Type | Name | Description |
|---|
Returns
| Type | Name | Description |
|---|---|---|
color | color | Volumetric fog emission color as {r, g, b, a} |
Examples
local color = gfx.volumetric_fog.get_emission()
engine.print("info", "Volumetric fog emission:", color[1], color[2], color[3], color[4])