DRG-Femboy-Voice/Source/FSD/Public/BTService_SetStance.h
2025-04-15 12:39:31 -07:00

21 lines
549 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "BehaviorTree/BTService.h"
#include "BehaviorTree/BehaviorTreeTypes.h"
#include "BTService_SetStance.generated.h"
UCLASS(Blueprintable)
class UBTService_SetStance : public UBTService {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FBlackboardKeySelector TargetLocationKey;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
float Distance;
public:
UBTService_SetStance();
};