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

17 lines
510 B
C++
Executable file

#include "DebrisStaticMesh.h"
FDebrisStaticMesh::FDebrisStaticMesh() {
this->Mesh = NULL;
this->Material = NULL;
this->CollisionProfile = EDebrisMeshCollisionProfile::NoCollision;
this->Probablity = 0.00f;
this->DestroyedSound = NULL;
this->DestroyedParticles = NULL;
this->Fragile = false;
this->CastShadows = EDebrisMeshShadows::Never;
this->Durable = false;
this->SpecialDebrisType = 0;
this->SpawnWhenCarving = false;
this->OnlySpawnWhenCarving = false;
}