File size: 1,184 Bytes
7fd553e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | // Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Abilities/Tasks/AbilityTask.h"
#include "AbilityTask_GrantNearbyInteraction.generated.h"
class UGameplayAbility;
class UObject;
struct FFrame;
struct FGameplayAbilitySpecHandle;
struct FObjectKey;
UCLASS()
class UAbilityTask_GrantNearbyInteraction : public UAbilityTask
{
GENERATED_UCLASS_BODY()
virtual void Activate() override;
/** Wait until an overlap occurs. This will need to be better fleshed out so we can specify game specific collision requirements */
UFUNCTION(BlueprintCallable, Category="Ability|Tasks", meta = (HidePin = "OwningAbility", DefaultToSelf = "OwningAbility", BlueprintInternalUseOnly = "TRUE"))
static UAbilityTask_GrantNearbyInteraction* GrantAbilitiesForNearbyInteractors(UGameplayAbility* OwningAbility, float InteractionScanRange, float InteractionScanRate);
private:
virtual void OnDestroy(bool AbilityEnded) override;
void QueryInteractables();
float InteractionScanRange = 100;
float InteractionScanRate = 0.100;
FTimerHandle QueryTimerHandle;
TMap<FObjectKey, FGameplayAbilitySpecHandle> InteractionAbilityCache;
};
|