More Coding Stuff. Yey!

This commit is contained in:
Anemunt
2025-12-13 17:08:08 -05:00
parent 5543e19531
commit cf63b25b16
10 changed files with 326 additions and 8 deletions

View File

@@ -415,6 +415,7 @@ bool SceneSerializer::loadScene(const fs::path& filePath,
&currentObj->rotation.x,
&currentObj->rotation.y,
&currentObj->rotation.z);
currentObj->rotation = NormalizeEulerDegrees(currentObj->rotation);
} else if (key == "scale") {
sscanf(value.c_str(), "%f,%f,%f",
&currentObj->scale.x,