Files
UnrealEngine/Engine/Source/Runtime/NavigationSystem/Private/NavAreas/NavArea_LowHeight.cpp
2025-05-18 13:04:45 +08:00

17 lines
367 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "NavAreas/NavArea_LowHeight.h"
#include UE_INLINE_GENERATED_CPP_BY_NAME(NavArea_LowHeight)
UNavArea_LowHeight::UNavArea_LowHeight(const FObjectInitializer& ObjectInitializer)
: Super(ObjectInitializer)
{
DefaultCost = BIG_NUMBER;
DrawColor = FColor(0, 0, 128);
// can't traverse
AreaFlags = 0;
}