17 static Math::Matrix4 GetWorldTransformMatrix(
ECS::Entity entity) {
18 return GetWorldTransformMatrix(entity.GetHandle(), entity.GetSceneEntityRegistry());
21 static Math::Matrix4 GetWorldTransformMatrix(entt::entity entity, entt::registry& registry) {
22 Math::Matrix4 matrix = Math::Matrix4(1.0f);
23 entt::entity currentEntity = entity;
24 while (currentEntity != entt::null) {
27 matrix = transformComp.GetTransformMatrix() * matrix;
30 currentEntity = parentComp.parentEntity;
37 return GetWorldPosition(entity.GetHandle(), entity.GetSceneEntityRegistry());
40 static Math::Float3 GetWorldPosition(entt::entity entity, entt::registry& registry) {
41 Math::Matrix4 worldMatrix = GetWorldTransformMatrix(entity, registry);
43 return Math::Float3(worldMatrix[3][0], worldMatrix[3][1], worldMatrix[3][2]);
46 void SetLocalMatrix(Math::Matrix4 localMatrix) {
49 for (
int i = 0; i < 3; i++) {
50 position[i] = localMatrix[3][i];
53 localMatrix[i][0] * localMatrix[i][0]
54 + localMatrix[i][1] * localMatrix[i][1]
55 + localMatrix[i][2] * localMatrix[i][2]);
59 void SetWorldMatrixRelativeTo(Math::Matrix4 newWorldMatrix, Math::Matrix4 parentMatrix) {
60 Math::Matrix4 localMatrix = glm::inverse(parentMatrix) * newWorldMatrix;
61 SetLocalMatrix(localMatrix);
64 Math::Matrix4 GetTransformMatrix()
const {
65 return glm::translate(position) *
66 glm::toMat4(rotation) *