mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
16 lines
673 B
C++
16 lines
673 B
C++
#include "FortAbilityTargetSelection.h"
|
|
|
|
FFortAbilityTargetSelection::FFortAbilityTargetSelection() {
|
|
this->Shape = EFortTargetSelectionShape::Sphere;
|
|
this->TestType = EFortTargetSelectionTestType::Overlap;
|
|
this->PrimarySource = EFortAbilityTargetingSource::Camera;
|
|
this->SecondarySource = EFortAbilityTargetingSource::Camera;
|
|
this->bExcludeObstructedByWorld = false;
|
|
this->bShouldAttachedActorsObstructTarget = false;
|
|
this->bCreateHitResultWhenNoTargetsFound = false;
|
|
this->bUseProjectileRotationForDamageZones = false;
|
|
this->TargetSelectionUsage = EFortAbilityTargetSelectionUsage::BothTargetingAndCanHit;
|
|
this->MaxTargets = 0;
|
|
}
|
|
|