From ccb173551141808993f6a27b0ff6bab74efe0413 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=BB=D0=B0=D0=B4=D0=B8=D1=81=D0=BB=D0=B0=D0=B2=20?= =?UTF-8?q?=D0=A1=D1=83=D1=85=D0=BE=D0=B2?= <22411953+Vladislav4KZ@users.noreply.github.com> Date: Sat, 30 Mar 2024 09:22:14 +0000 Subject: [PATCH] graph: slightly change the radius color --- src/graph.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graph.cpp b/src/graph.cpp index 7a9acc0..888ef57 100644 --- a/src/graph.cpp +++ b/src/graph.cpp @@ -2261,7 +2261,7 @@ void BotGraph::frame () { // draw the radius circle Vector origin = (path.flags & NodeFlag::Crouch) ? path.origin : path.origin - Vector (0.0f, 0.0f, 18.0f); - Color radiusColor { 0, 0, 255 }; + Color radiusColor { 36, 36, 255 }; // if radius is nonzero, draw a full circle if (path.radius > 0.0f) {