From 26f5a5069dbbb4339074076d535caa0860d3b565 Mon Sep 17 00:00:00 2001 From: Aki Date: Sun, 12 Feb 2023 00:41:19 +0100 Subject: Velocity indicators are now dark greenish --- kurator/src/Battle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kurator/src/Battle.cpp b/kurator/src/Battle.cpp index 66a17bd..9f33d59 100644 --- a/kurator/src/Battle.cpp +++ b/kurator/src/Battle.cpp @@ -237,7 +237,7 @@ draw_markers(engine::ConstContext& ctx) const auto& velocity = movement.speed; const auto edge = pos + velocity.normalized().scale(marker.radius); const auto tip = edge + velocity.scale(2.0 * ctx.camera.scale); - DrawLine(edge.x, edge.y, tip.x, tip.y, DARKGRAY); + DrawLine(edge.x, edge.y, tip.x, tip.y, DARKGREEN); } const engine::Point direction {std::cos(transform.angle), std::sin(transform.angle)}; const auto edge = pos + direction.scale(marker.radius); -- cgit v1.1