15 lines
407 B
C++
Executable file
15 lines
407 B
C++
Executable file
#include "TerrainScannerStaticMesh.h"
|
|
|
|
void UTerrainScannerStaticMesh::SetVisibleOnScanner(bool InShowOnScanner) {
|
|
}
|
|
|
|
void UTerrainScannerStaticMesh::OnOwnerDeath(UHealthComponentBase* InHealthComponent) {
|
|
}
|
|
|
|
UTerrainScannerStaticMesh::UTerrainScannerStaticMesh() {
|
|
this->bVisibleAtBeginPlay = true;
|
|
this->bHideOnDeath = true;
|
|
this->bUseFogOfWar = false;
|
|
this->bVisibleOnScanner = false;
|
|
}
|
|
|