mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
14 lines
596 B
C++
14 lines
596 B
C++
#include "FortRelevancyZoneIndicator.h"
|
|
#include "Components/StaticMeshComponent.h"
|
|
|
|
AFortRelevancyZoneIndicator::AFortRelevancyZoneIndicator() {
|
|
this->RelevancyZoneMesh = CreateDefaultSubobject<UStaticMeshComponent>(TEXT("RelevancyZoneMesh"));
|
|
this->CustomDepthMesh = CreateDefaultSubobject<UStaticMeshComponent>(TEXT("CustomDepthMesh"));
|
|
this->RelevancyZoneToWorldScale = 1.00f;
|
|
this->MiniMapNetRelevancyOverlayMaterial = NULL;
|
|
this->MiniMapNetRelevancyCircleMaterial = NULL;
|
|
this->MinimapNetRelevancyOverlayMID = NULL;
|
|
this->MinimapNetRelevancyCircleMID = NULL;
|
|
}
|
|
|