ReflectionProbe.UpdateMode/updateMode - multiple declarations

Function ReflectionProbe.updateMode

Sets how frequently the probe is updated. Can be constant UPDATE_ONCE or constant UPDATE_ALWAYS.

ReflectionProbe.UpdateMode updateMode() nothrow @property @nogc;

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

Enum ReflectionProbe.UpdateMode

enum UpdateMode : int { ... }

Enum members

NameDescription
updateAlways Update the probe every frame. This is needed when you want to capture dynamic objects. However, it results in an increased render time. Use constant UPDATE_ONCE whenever possible.
updateOnce Update the probe once on the next frame.