2024-04-12 11:49:22 -07:00
|
|
|
#pragma once
|
|
|
|
|
2024-04-12 16:55:34 -07:00
|
|
|
#include "GasaCommon.h"
|
2024-04-12 11:49:22 -07:00
|
|
|
#include "GameFramework/Character.h"
|
|
|
|
|
|
|
|
#include "GasaCharacter.generated.h"
|
|
|
|
|
2024-04-12 19:05:09 -07:00
|
|
|
UENUM(BlueprintType)
|
|
|
|
enum class EHighlight : uint8
|
|
|
|
{
|
|
|
|
Disabled,
|
|
|
|
Enabled,
|
|
|
|
};
|
|
|
|
|
2024-04-12 11:49:22 -07:00
|
|
|
UCLASS(Abstract)
|
|
|
|
class GASA_API AGasaCharacter : public ACharacter
|
|
|
|
{
|
|
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
|
|
#pragma region Combat
|
|
|
|
UPROPERTY(EditAnywhere, Category="Combat")
|
|
|
|
TObjectPtr<USkeletalMeshComponent> Weapon;
|
|
|
|
#pragma endregion Combat
|
2024-04-12 17:16:25 -07:00
|
|
|
|
|
|
|
#pragma region Highlighting
|
2024-04-12 23:31:49 -07:00
|
|
|
static constexpr float HighlightStencilDepth = 256.0;
|
|
|
|
|
2024-04-12 19:37:31 -07:00
|
|
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category="Highlighting")
|
2024-04-12 19:05:09 -07:00
|
|
|
EHighlight HighlightState;
|
2024-04-12 19:37:31 -07:00
|
|
|
|
|
|
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category="Highlighting")
|
|
|
|
FLinearColor HighlightColor;
|
|
|
|
|
|
|
|
UFUNCTION(BlueprintCallable, Category="Highlighting")
|
2024-04-12 19:05:09 -07:00
|
|
|
void SetHighlight( EHighlight Desired );
|
2024-04-12 17:16:25 -07:00
|
|
|
|
2024-04-12 19:37:31 -07:00
|
|
|
UFUNCTION(BlueprintCallable, Category="Highlighting")
|
2024-04-12 19:05:09 -07:00
|
|
|
FORCEINLINE void Highlight() { SetHighlight(EHighlight::Enabled); };
|
2024-04-12 17:16:25 -07:00
|
|
|
|
2024-04-12 19:37:31 -07:00
|
|
|
UFUNCTION(BlueprintCallable, Category="Highlighting")
|
2024-04-12 17:16:25 -07:00
|
|
|
FORCEINLINE void Dehighlight() { SetHighlight(EHighlight::Disabled); };
|
|
|
|
#pragma endregion Highlighting
|
2024-04-12 23:31:49 -07:00
|
|
|
|
2024-04-12 13:30:01 -07:00
|
|
|
AGasaCharacter();
|
|
|
|
|
2024-04-12 11:49:22 -07:00
|
|
|
#pragma region Actor
|
|
|
|
void BeginPlay() override;
|
2024-04-12 19:05:09 -07:00
|
|
|
|
|
|
|
void Tick(float DeltaSeconds) override;
|
2024-04-12 11:49:22 -07:00
|
|
|
#pragma endregion Actor
|
|
|
|
};
|