Apply - ImageSpaceModifier

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search

Member of: ImageSpaceModifier Script

Applies this image-space modifier to the screen with the specified strength.

Syntax[edit | edit source]

Function Apply(float afStrength = 1.0) native

Parameters[edit | edit source]

  • afStrength: How "strong" the effect will be. 0 is no effect, 1 is full effect, though the strength is not clamped to this range. Numbers outside this range may provide... interesting results.
    • Default: 1.0

Return Value[edit | edit source]

None.

Examples[edit | edit source]

; Apply the blood effect at full strength
BloodSplatter.Apply()


; Apply the blood effect at half-strength
BloodSplatter.Apply(0.5)

See Also[edit | edit source]