RSX Code Reference
    Preparing search index...
    • rsx
    • TemporalAASettings

    Class TemporalAASettings

    Class that notifies its parent ManagedSettigns or ManagedSubSettings object when one of its members changes.

    Index
    • Parameters

      • OptionalisInternalConstructor: boolean

      Returns TemporalAASettings

    • get filterSize(): number

      Determines the distance between temporal AA samples. Smaller values result in a sharper image.

      Returns number

    • set filterSize(value: number): void

      Parameters

      • value: number

      Returns void

    • get isEnabled(): boolean

      Enables or disables temporal anti-aliasing.

      Note: Other settings might effect whether or not the TAA will be effectively computed or not. To check whether or not TAA is actually being processed, use RendererView::isTemporalAntialiasingRequired()

      Returns boolean

    • set isEnabled(value: boolean): void

      Parameters

      • value: boolean

      Returns void

    • get jitteredPositionCount(): number

      Number of different jittered positions to use. Each frame will use one position and subsequent frames will use subsequent positions until this number of reached, at which point the positions start getting re-used from the start.

      Returns number

    • set jitteredPositionCount(value: number): void

      Parameters

      • value: number

      Returns void

    • Allows modifying this object multiple times in a row in a scope, without marking the object dirty immediately. Dirty flags are accumulated and the object is marked dirty at the end.

      Parameters

      • action: () => void

        The scope where the object is modified.

      Returns void