13 lines
357 B
C++
13 lines
357 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
|
|
#include "AI/CombatBossAIController.h"
|
|
#include "Perception/AISenseConfig_Sight.h"
|
|
|
|
ACombatBossAIController::ACombatBossAIController()
|
|
{
|
|
SightConfig->SightRadius = 3000.f;
|
|
SightConfig->LoseSightRadius = 5000.f;
|
|
SightConfig->AutoSuccessRangeFromLastSeenLocation = 5000.f;
|
|
}
|