UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
Interface_PostProcessVolume.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
7#include "UObject/Interface.h"
8#include "Interface_PostProcessVolume.generated.h"
9
10#define DEBUG_POST_PROCESS_VOLUME_ENABLE (!(UE_BUILD_SHIPPING))
11
13
15{
17 float Priority;
22
23 // Size (volume of the PPV's bounding box), is used as an additional sort key if Priority is equal. Smaller volumes take higher
24 // priority. Unbounded volumes are treated as having max volume. If volume is also equal, an arbitrary guid is used as a final
25 // sort key. The goal is to improve determinism in the order equal Priority volumes are processed, which otherwise is affected
26 // by the order in which they were loaded, which can vary between editor and engine, platform, and due to streaming.
27 double Size = DBL_MAX;
29};
30
32UINTERFACE(MinimalAPI, meta = (CannotImplementInterfaceInBlueprint))
37
39{
41
42 virtual bool EncompassesPoint(FVector Point, float SphereRadius/*=0.f*/, float* OutDistanceToPoint) = 0;
43 virtual FPostProcessVolumeProperties GetProperties() const = 0;
44#if DEBUG_POST_PROCESS_VOLUME_ENABLE
45 virtual FString GetDebugName() const = 0;
46#endif
47};
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
#define UINTERFACE(...)
Definition ObjectMacros.h:780
#define GENERATED_IINTERFACE_BODY(...)
Definition ObjectMacros.h:770
#define GENERATED_UINTERFACE_BODY(...)
Definition ObjectMacros.h:769
Definition Interface_PostProcessVolume.h:39
Definition Interface_PostProcessVolume.h:34
Definition Interface.h:19
Definition Guid.h:109
Definition Scene.h:693
Definition Interface_PostProcessVolume.h:15
bool bIsUnbound
Definition Interface_PostProcessVolume.h:21
const FPostProcessSettings * Settings
Definition Interface_PostProcessVolume.h:16
double Size
Definition Interface_PostProcessVolume.h:27
bool bIsEnabled
Definition Interface_PostProcessVolume.h:20
FGuid VolumeGuid
Definition Interface_PostProcessVolume.h:28
float Priority
Definition Interface_PostProcessVolume.h:17
float BlendWeight
Definition Interface_PostProcessVolume.h:19
float BlendRadius
Definition Interface_PostProcessVolume.h:18