UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
PlaneReflectionCaptureComponent.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3
4#pragma once
5
6#include "CoreMinimal.h"
9#include "PlaneReflectionCaptureComponent.generated.h"
10
11 // -> will be exported to EngineDecalClasses.h
12UCLASS(hidecategories=(Collision, Object, Physics, SceneComponent), MinimalAPI)
14{
16
17
18 UPROPERTY(EditAnywhere, BlueprintReadWrite, Category=ReflectionCapture, meta=(UIMin = "8.0", UIMax = "16384.0"))
19 float InfluenceRadiusScale;
20
21 UPROPERTY()
22 TObjectPtr<class UDrawSphereComponent> PreviewInfluenceRadius;
23
24 UPROPERTY()
25 TObjectPtr<class UBoxComponent> PreviewCaptureBox;
26
27public:
28 virtual void UpdatePreviewShape() override;
29 virtual float GetInfluenceBoundingRadius() const override;
30
31 //~ Begin UObject Interface
32 //~ End UObject Interface
33};
34
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
#define UPROPERTY(...)
UObject definition macros.
Definition ObjectMacros.h:744
#define GENERATED_UCLASS_BODY(...)
Definition ObjectMacros.h:768
#define UCLASS(...)
Definition ObjectMacros.h:776
Definition PlaneReflectionCaptureComponent.h:14
Definition ReflectionCaptureComponent.h:30
Definition ObjectPtr.h:488