From 566e5b4dcf3657246c8a7eabeae90429e9ce5504 Mon Sep 17 00:00:00 2001 From: Lynix Date: Fri, 31 Aug 2018 22:01:21 +0200 Subject: [PATCH] Sdk/DebugSystem: Increase line width to 2 --- SDK/src/NDK/Systems/DebugSystem.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/SDK/src/NDK/Systems/DebugSystem.cpp b/SDK/src/NDK/Systems/DebugSystem.cpp index 28cd53dee..063a25d77 100644 --- a/SDK/src/NDK/Systems/DebugSystem.cpp +++ b/SDK/src/NDK/Systems/DebugSystem.cpp @@ -378,6 +378,7 @@ namespace Ndk m_globalAabbMaterial->EnableDepthBuffer(true); m_globalAabbMaterial->SetDiffuseColor(Nz::Color::Orange); m_globalAabbMaterial->SetFaceFilling(Nz::FaceFilling_Line); + m_globalAabbMaterial->SetLineWidth(2.f); } return m_globalAabbMaterial; @@ -392,6 +393,7 @@ namespace Ndk m_localAabbMaterial->EnableDepthBuffer(true); m_localAabbMaterial->SetDiffuseColor(Nz::Color::Red); m_localAabbMaterial->SetFaceFilling(Nz::FaceFilling_Line); + m_localAabbMaterial->SetLineWidth(2.f); } return m_localAabbMaterial; @@ -406,6 +408,7 @@ namespace Ndk m_collisionMaterial->EnableDepthBuffer(true); m_collisionMaterial->SetDiffuseColor(Nz::Color::Blue); m_collisionMaterial->SetFaceFilling(Nz::FaceFilling_Line); + m_collisionMaterial->SetLineWidth(2.f); } return m_collisionMaterial; @@ -420,6 +423,7 @@ namespace Ndk m_obbMaterial->EnableDepthBuffer(true); m_obbMaterial->SetDiffuseColor(Nz::Color::Green); m_obbMaterial->SetFaceFilling(Nz::FaceFilling_Line); + m_obbMaterial->SetLineWidth(2.f); } return m_obbMaterial;