Ed_
ad41867dc5
- Just a old name for a set of changes to make the game framework hardened for multiplayer as well as some ease of use functionality.
27 lines
563 B
C++
27 lines
563 B
C++
#pragma once
|
|
|
|
#include "GasaActor.h"
|
|
#include "GasaCommon.h"
|
|
#include "GameFramework/Actor.h"
|
|
#include "CameraMount.generated.h"
|
|
|
|
UCLASS(Blueprintable)
|
|
class GASA_API ACameraMount : public AGasaActor
|
|
{
|
|
GENERATED_BODY()
|
|
public:
|
|
#pragma region Camera
|
|
UPROPERTY(EditAnywhere, Category="Camera")
|
|
TObjectPtr<UCameraComponent> Camera;
|
|
|
|
UPROPERTY(EditAnywhere, Category="Camera")
|
|
TObjectPtr<USpringArmComponent> CamSpringArm;
|
|
#pragma endregion Camera
|
|
|
|
ACameraMount();
|
|
|
|
#pragma region Actor
|
|
void PostInitializeComponents() override;
|
|
#pragma endregion Actor
|
|
};
|