File size: 2,117 Bytes
1e67697 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | // Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Camera/CameraComponent.h"
#include "GameFramework/Actor.h"
#include "LyraCameraComponent.generated.h"
class UCanvas;
class ULyraCameraMode;
class ULyraCameraModeStack;
class UObject;
struct FFrame;
struct FGameplayTag;
struct FMinimalViewInfo;
template <class TClass> class TSubclassOf;
DECLARE_DELEGATE_RetVal(TSubclassOf<ULyraCameraMode>, FLyraCameraModeDelegate);
/**
* ULyraCameraComponent
*
* The base camera component class used by this project.
*/
UCLASS()
class ULyraCameraComponent : public UCameraComponent
{
GENERATED_BODY()
public:
ULyraCameraComponent(const FObjectInitializer& ObjectInitializer);
// Returns the camera component if one exists on the specified actor.
UFUNCTION(BlueprintPure, Category = "Lyra|Camera")
static ULyraCameraComponent* FindCameraComponent(const AActor* Actor) { return (Actor ? Actor->FindComponentByClass<ULyraCameraComponent>() : nullptr); }
// Returns the target actor that the camera is looking at.
virtual AActor* GetTargetActor() const { return GetOwner(); }
// Delegate used to query for the best camera mode.
FLyraCameraModeDelegate DetermineCameraModeDelegate;
// Add an offset to the field of view. The offset is only for one frame, it gets cleared once it is applied.
void AddFieldOfViewOffset(float FovOffset) { FieldOfViewOffset += FovOffset; }
virtual void DrawDebug(UCanvas* Canvas) const;
// Gets the tag associated with the top layer and the blend weight of it
void GetBlendInfo(float& OutWeightOfTopLayer, FGameplayTag& OutTagOfTopLayer) const;
protected:
virtual void OnRegister() override;
virtual void GetCameraView(float DeltaTime, FMinimalViewInfo& DesiredView) override;
virtual void UpdateCameraModes();
protected:
// Stack used to blend the camera modes.
UPROPERTY()
TObjectPtr<ULyraCameraModeStack> CameraModeStack;
// Offset applied to the field of view. The offset is only for one frame, it gets cleared once it is applied.
float FieldOfViewOffset;
};
|