Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/FPostProcessUtils
Description
Overwrites post-process settings with another set of post-process settings. Only settings that are overriden in the other set (OtherTo) are overwritten. This effectively "overlays" one set of settings on top of another.
| Name | OverridePostProcessSettings |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Classes/Engine/PostProcessUtils.h |
| Include Path | #include "Engine/PostProcessUtils.h" |
| Source | /Engine/Source/Runtime/Engine/Private/PostProcessUtils.cpp |
static bool OverridePostProcessSettings
(
FPostProcessSettings & ThisFrom,
const FPostProcessSettings & OtherTo
)
Whether any setting was overwritten.
Parameters
| Name | Remarks |
|---|---|
| ThisFrom | The settings to write over. |
| OtherTo | The settings to overlay on top. |