gfx.antialiasing.set_mode

Client

Sets the active antialiasing mode


Syntax

local status = gfx.antialiasing.set_mode(
    mode
)

Parameters

TypeNameDescription
gfx.antialiasing.aa_modemodeAntialiasing mode to apply

Returns

TypeNameDescription
boolstatustrue on successful execution, false otherwise

Examples

Set antialiasing mode to TAA
gfx.antialiasing.set_mode(gfx.antialiasing.aa_mode.TAA)

On this page