/
redgpu
/
ezEngine
Обзор
Документация
Войти
/
redgpu
/
ezEngine
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
Code/EnginePlugins/ProcGenPlugin/Tasks/Implementation/PlacementData.cpp
25 строк
634 B
C-Core
Various Proc Gen Improvements (#1705)
30 окт 2025, 14:32
Не верифицирован
30 окт 2025, 14:32
ac34f29
Код
Авторство
О чём код?
#include <ProcGenPlugin/ProcGenPluginPCH.h> #include <ProcGenPlugin/Components/VolumeCollection.h> #include <ProcGenPlugin/Tasks/PlacementData.h> namespace ezProcGenInternal { PlacementData::PlacementData() = default; PlacementData::~PlacementData() = default; void PlacementData::Clear() { m_pPhysicsModule = nullptr; m_pWorld = nullptr; m_pOutput = nullptr; m_uiTileSeed = 0; m_TileBoundingBox = ezBoundingBox::MakeInvalid(); m_bDebugVisualization = false; m_GlobalToLocalBoxTransforms.Clear(); m_VolumeCollections.Clear(); m_GlobalData.Clear(); } } // namespace ezProcGenInternal