62 lines
1.8 KiB
C
62 lines
1.8 KiB
C
#pragma once
|
|
|
|
#include "GasaCommon.h"
|
|
#include "Engine/DataTable.h"
|
|
|
|
#include "GasaAbilitySystem.generated.h"
|
|
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct GASA_API FAttributeSetField : public FTableRowBase
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
FAttributeSetField()
|
|
: Name("Provide_Name")
|
|
, Category("Provide Category")
|
|
, Description("Provide Description")
|
|
, BaseValue(0)
|
|
, bUseMinAttribute(false)
|
|
, bUseMaxAttribute(false)
|
|
, MinAttribute("")
|
|
, MinValue(0)
|
|
, MaxAttribute("")
|
|
, MaxValue(0)
|
|
{}
|
|
virtual ~FAttributeSetField()
|
|
{}
|
|
|
|
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Gameplay Attribute")
|
|
FName Name;
|
|
|
|
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Gameplay Attribute")
|
|
FName Category;
|
|
|
|
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Gameplay Attribute")
|
|
FString Description;
|
|
|
|
// UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Gameplay Attribute")
|
|
// FGameplayTag Tag;
|
|
|
|
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Gameplay Attribute")
|
|
float BaseValue;
|
|
|
|
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Gameplay Attribute")
|
|
bool bUseMinAttribute;
|
|
|
|
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Gameplay Attribute")
|
|
bool bUseMaxAttribute;
|
|
|
|
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Gameplay Attribute", meta =( EditCondition="bUseMinAttribute", EditConditionHides))
|
|
FName MinAttribute;
|
|
|
|
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Gameplay Attribute", meta =( EditCondition="bUseMinAttribute==false", EditConditionHides))
|
|
float MinValue;
|
|
|
|
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Gameplay Attribute", meta =( EditCondition="bUseMaxAttribute", EditConditionHides))
|
|
FName MaxAttribute;
|
|
|
|
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Gameplay Attribute", meta =( EditCondition="bUseMaxAttribute==false", EditConditionHides))
|
|
float MaxValue;
|
|
};
|