Light2D.ShadowFilter/shadowFilter - multiple declarations

Function Light2D.shadowFilter

Shadow filter type. See shadowfilter for possible values.

Light2D.ShadowFilter shadowFilter() nothrow @property @nogc;

void shadowFilter (
  long v
) nothrow @property @nogc;

Enum Light2D.ShadowFilter

enum ShadowFilter : int { ... }

Enum members

NameDescription
shadowFilterNone No filter applies to the shadow map. See shadowFilter.
shadowFilterPcf13 Percentage closer filtering (13 samples) applies to the shadow map. See shadowFilter.
shadowFilterPcf3 Percentage closer filtering (3 samples) applies to the shadow map. See shadowFilter.
shadowFilterPcf5 Percentage closer filtering (5 samples) applies to the shadow map. See shadowFilter.
shadowFilterPcf7 Percentage closer filtering (7 samples) applies to the shadow map. See shadowFilter.
shadowFilterPcf9 Percentage closer filtering (9 samples) applies to the shadow map. See shadowFilter.