Add reworked Worker Enemy AI #3

Closed
baz wants to merge 24 commits from worker-ai into master
2 changed files with 6 additions and 1 deletions
Showing only changes of commit 275f86b03f - Show all commits

View File

@ -24,8 +24,11 @@ void APatrolRoute::IncrementPatrolRoute()
}
PatrolIndex += Direction;
}
FVector APatrolRoute::GetSplinePointAtWorld()
{
return GetSplinePointAtWorld(PatrolIndex);
}
FVector APatrolRoute::GetSplinePointAtWorld(int pointIndex)

View File

@ -28,5 +28,7 @@ public:
void IncrementPatrolRoute();
FVector GetSplinePointAtWorld();
FVector GetSplinePointAtWorld(int pointIndex);
};