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
| Type | Name | Description |
|---|---|---|
bool | result | true if blend splits is enabled, false otherwise |
Examples
local entity = light.directional.create()
core.engine.print("info", "Blend Splits Enabled:", entity:is_blend_splits_enabled())