gfx.ssr.get_max_steps

Client

Retrieves the current maximum number of ray march steps for the SSR post-processing effect


Syntax

local result = gfx.ssr.get_max_steps()

Parameters

No parameters are accepted by this function

Returns

TypeNameDescription
int | boolresultCurrent max steps value on successful execution, false otherwise

Examples

Get the current ssr max ray march steps
core.engine.print("info", "SSR max steps:", gfx.ssr.get_max_steps())

On this page