From 1378a6db9c2e9789185eae8ca4d12df2efae35f8 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Wed, 4 Sep 2024 11:21:32 +0200 Subject: [PATCH] Recast: make off-mesh links more visible Use the dark blue color so it doesn't collide with traverse link colors. --- src/naveditor/Editor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/naveditor/Editor.cpp b/src/naveditor/Editor.cpp index 88ce9828..cfe25f2c 100644 --- a/src/naveditor/Editor.cpp +++ b/src/naveditor/Editor.cpp @@ -39,8 +39,8 @@ unsigned int EditorDebugDraw::areaToCol(unsigned int area) { // Ground : light blue case EDITOR_POLYAREA_GROUND: return duRGBA(0, 192, 215, 255); - // Jump : purple - case EDITOR_POLYAREA_JUMP: return duRGBA(255, 0, 255, 255); + // Jump : blue + case EDITOR_POLYAREA_JUMP: return duRGBA(0, 0, 255, 255); // Trigger : light green case EDITOR_POLYAREA_TRIGGER: return duRGBA(20, 245, 0, 255); // Unexpected : white