mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
17 lines
658 B
C++
17 lines
658 B
C++
#include "FortAbilityTargetSelection.h"
|
|
|
|
FFortAbilityTargetSelection::FFortAbilityTargetSelection() {
|
|
Shape = EFortTargetSelectionShape::Sphere;
|
|
TestType = EFortTargetSelectionTestType::Overlap;
|
|
PrimarySource = EFortAbilityTargetingSource::Camera;
|
|
SecondarySource = EFortAbilityTargetingSource::Camera;
|
|
bAlignShapeEdgeToSourceLocation = false;
|
|
bExcludeObstructedByWorld = false;
|
|
bShouldAttachedActorsObstructTarget = false;
|
|
bCreateHitResultWhenNoTargetsFound = false;
|
|
bUseProjectileRotationForDamageZones = false;
|
|
TargetSelectionUsage = EFortAbilityTargetSelectionUsage::BothTargetingAndCanHit;
|
|
MaxTargets = 0;
|
|
}
|
|
|