self:is_shadow_reverse_cull_face_enabled

Client

Checks whether shadow reverse cull face is enabled on the point light


Syntax

local result = self:is_shadow_reverse_cull_face_enabled()

Parameters

No parameters are accepted by this function

Returns

TypeNameDescription
boolresulttrue if shadow reverse cull face is enabled, false otherwise

Examples

Check is shadow reverse cull face enabled on a point light
local entity = light.point.create()

core.engine.print("info", "Shadow Reverse Cull Face Enabled:", entity:is_shadow_reverse_cull_face_enabled())

On this page