Taos API Reference
    Preparing search index...

    Class MotionBlurFeature

    Motion-blur post-process. Reads frame.hdr + frame.depth, writes the blurred HDR back into frame.hdr.

    Default mode is camera-only — fast, single fullscreen pass; captures camera translation / rotation but not object motion. Enable MotionBlurFeatureOptions.useVelocityBuffer to additionally inject a velocity pass that records per-object motion (see option doc for trade-offs).

    Must be registered AFTER TAAFeature (it expects to convolve the jittered-and-resolved frame, and it reads camera.jitteredViewProjectionMatrix()) and BEFORE bloom / DoF — those should respond to the blurred result, not the pre-blur sharp image.

    Implements

    Index

    Constructors

    Properties

    name: string = MotionBlurFeature.name

    Stable identifier used for lookup, signature hashing, and pass-name keying.

    enabled: boolean = true

    When false, the feature is skipped each frame. Toggling triggers a cached-graph invalidation.

    pass: MotionBlurPass | null = null
    velocityPass: VelocityPass | null = null
    strength: number
    maxRadiusPx: number
    samples: number
    useVelocityBuffer: boolean

    Methods