/
redgpu
/
ezEngine
Обзор
Документация
Войти
/
redgpu
/
ezEngine
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
Code/Engine/Core/Messages/TransformChangedMessage.h
16 строк
541 B
Jan Krassnigg
Improved code documentation: Core, Texture, Utilities (#1666)
23 сен 2025, 09:56
Не верифицирован
23 сен 2025, 09:56
a9f6901
Код
Авторство
О чём код?
#pragma once #include <Core/World/Declarations.h> #include <Foundation/Communication/Message.h> /// \brief Message sent when a game object's global transform changes. /// /// Contains both the old and new global transforms, allowing components to respond /// to position, rotation, or scale changes and calculate movement deltas if needed. struct EZ_CORE_DLL ezMsgTransformChanged : public ezMessage { EZ_DECLARE_MESSAGE_TYPE(ezMsgTransformChanged, ezMessage); ezTransform m_OldGlobalTransform; ezTransform m_NewGlobalTransform; };