/
redgpu
/
ezEngine
Обзор
Документация
Войти
/
redgpu
/
ezEngine
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
Code/EnginePlugins/ProcGenPlugin/Resources/ProcGenGraphSharedData.h
26 строк
703 B
C-Core
Fixed crash when recreating decal atlas after profile change (#1886)
30 мар 2026, 22:36
Не верифицирован
30 мар 2026, 22:36
f9e84e0
Код
Авторство
О чём код?
#pragma once #include <Foundation/Tracks/Curve1D.h> #include <Foundation/Types/TagSet.h> #include <ProcGenPlugin/Declarations.h> namespace ezProcGenInternal { class EZ_PROCGENPLUGIN_DLL GraphSharedData : public GraphSharedDataBase { public: ezUInt32 AddTagSet(const ezTagSet& tagSet); ezUInt32 AddCurve(ezSampledCurve1D&& curve); const ezTagSet& GetTagSet(ezUInt32 uiIndex) const; const ezSampledCurve1D& GetCurve(ezUInt32 uiIndex) const; void Save(ezStreamWriter& inout_stream) const; ezResult Load(ezStreamReader& inout_stream); private: ezDynamicArray<ezTagSet> m_TagSets; ezDynamicArray<ezSampledCurve1D> m_Curves; }; } // namespace ezProcGenInternal