DRG-Femboy-Voice/Source/FSD/Private/LevelGenerationCarverComponent.cpp
2025-04-15 12:39:31 -07:00

15 lines
503 B
C++
Executable file

#include "LevelGenerationCarverComponent.h"
ULevelGenerationCarverComponent::ULevelGenerationCarverComponent() {
this->MeshCarver = NULL;
this->ConvexCarver = NULL;
this->StaticMeshCarver = NULL;
this->TerrainMaterial = NULL;
this->Filter = ECarveFilterType::ReplaceAll;
this->ConvexExpensiveNoise = 0.00f;
this->CarveCellSize = CarveOptionsCellSize::CARVE_CELL_SIZE_50;
this->PreviewEnabled = true;
this->CarvingDisabled = false;
this->SelfActivate = false;
}