gfx.glow.set_blend_mode
Client
Sets the blend mode of the glow post-processing effect
Syntax
local status = gfx.glow.set_blend_mode(
value
)Parameters
| Type | Name | Description |
|---|---|---|
gfx.glow.blend_mode | value | Blend mode to apply |
Returns
| Type | Name | Description |
|---|---|---|
bool | status | true on successful execution, false otherwise |
Examples
-- Set additive blend mode
gfx.glow.set_blend_mode(gfx.glow.blend_mode.ADDITIVE)
-- Set mix blend mode
gfx.glow.set_blend_mode(gfx.glow.blend_mode.MIX)