Files
2026-04-22 15:51:07 +02:00

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;
}