Skip to content

VariableBindableEffectField

typescript
type VariableBindableShadowEffectField =
  | "radius"
  | "color"
  | "spread"
  | "offsetX"
  | "offsetY";

type VariableBindableBlurEffectField = "radius";

type VariableBindableEffectField =
  | VariableBindableShadowEffectField
  | VariableBindableBlurEffectField;

A list of node fields that can be bound to a Effect by type.