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

17 lines
395 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "BehaviorTree/BTDecorator.h"
#include "BTDecorator_ModifySpeed.generated.h"
UCLASS(Blueprintable)
class UBTDecorator_ModifySpeed : public UBTDecorator {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
float SpeedModifier;
public:
UBTDecorator_ModifySpeed();
};