From 8977557a61b3e1e272b622d2ad66b5c2959327ee Mon Sep 17 00:00:00 2001 From: Orange Date: Sat, 22 Mar 2025 17:41:01 +0300 Subject: [PATCH] fix --- tests/engines/unit_test_unity_engine.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/engines/unit_test_unity_engine.cpp b/tests/engines/unit_test_unity_engine.cpp index 607c6f6..95d4495 100644 --- a/tests/engines/unit_test_unity_engine.cpp +++ b/tests/engines/unit_test_unity_engine.cpp @@ -55,8 +55,6 @@ TEST(UnitTestUnityEngine, Project) const auto cam = omath::unity_engine::Camera({0, 0, 0}, {}, {1280.f, 720.f}, fov, 0.03f, 1000.f); const auto proj = cam.WorldToScreen({0.f, 2.f, 10.f}); - std::println("Unity projected: {}, {}", proj->x, proj->y); - std::println("{}", cam.GetViewProjectionMatrix().ToString()); } TEST(UnitTestUnityEngine, CameraSetAndGetFov)