gfx.vol_fog.get_albedo

Client

Retrieves the current albedo color of the volumetric fog post-processing effect


Syntax

local result = gfx.vol_fog.get_albedo()

Parameters

No parameters are accepted by this function

Returns

TypeNameDescription
colorresultVolumetric fog albedo color as {r, g, b, a}

Examples

Print current volumetric fog albedo color
core.engine.print("info", "Volumetric fog albedo:", util.table.unpack(gfx.vol_fog.get_albedo()))

On this page