Definition
SetBloomColor(float red, float green, float blue)
Description
This function sets the bloom color.
Parameters
red, green, blue
Specify the red, green and blue components of bloom color. Each of these three values must be between 0.0 and 1.0.
Example
function Init() SetBloomColor(0.75, 0.5, 0.25) end function Update() end
In this example, we set the red, green, and blue components of bloom color to 0.75, 0.5, and 0.25, respectively.
SetBloomColor