self:is_blend_splits_enabled

Client

Checks whether blend splits is enabled on the directional light, which blends between shadow cascade levels to reduce visible seams


Syntax

local result = self:is_blend_splits_enabled()

Parameters

No parameters are accepted by this function

Returns

TypeNameDescription
boolresulttrue if blend splits is enabled, false otherwise

Examples

Check blend splits on a directional light
local entity = light.directional.create()

core.engine.print("info", "Blend Splits Enabled:", entity:is_blend_splits_enabled())

On this page