gfx.sky.procedural.get_ground_bottom_color

Client

Retrieves the current bottom color of the procedural ground


Syntax

local result = gfx.sky.procedural.get_ground_bottom_color()

Parameters

No parameters are accepted by this function

Returns

TypeNameDescription
colorresultCurrent bottom color of the procedural ground as {r, g, b, a}

Examples

Print current procedural sky ground bottom color
core.engine.print("info", "Ground bottom color:", util.table.unpack(gfx.sky.procedural.get_ground_bottom_color()))

On this page