Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

23 lines
655 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "UObject/ObjectMacros.h"
#include "Templates/SubclassOf.h"
#include "Perception/AISense.h"
#include "Perception/AISenseConfig.h"
#include "AISenseConfig_Touch.generated.h"
UCLASS(meta = (DisplayName = "AI Touch config"), MinimalAPI)
class UAISenseConfig_Touch : public UAISenseConfig
{
GENERATED_UCLASS_BODY()
public:
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Sense", config)
FAISenseAffiliationFilter DetectionByAffiliation = {true, true, true};
AIMODULE_API virtual TSubclassOf<UAISense> GetSenseImplementation() const override;
};