GetBloomIntensity

Definition

double GetBloomIntensity()

Description

This function returns the bloom intensity.

Return Value

Bloom intensity.

Example

intensity = 0.0

function Init()
    intensity  = GetBloomIntensity()

    message = string.format("\nBloom intensity is : %.2f" ,intensity)
    PrintConsole(message)
end

function Update()

end
In this example, the GetBloomIntensity function returns the bloom intensity. Then intensity value is displayed on the console by the PrintConsole function.
adminGetBloomIntensity