diff --git a/src/gui/game/GameView.cpp b/src/gui/game/GameView.cpp index 25930f789..7db05e05a 100644 --- a/src/gui/game/GameView.cpp +++ b/src/gui/game/GameView.cpp @@ -2185,6 +2185,13 @@ void GameView::OnDraw() ui::Point finalCurrentMouse = c->PointTranslate(currentMouse); ui::Point initialDrawPoint = drawPoint1; + //Air velocity line near cursor + if (showDebug && (rendererSettings->displayMode & DISPLAY_AIRV)) + { + g->XorLine({finalCurrentMouse.X, finalCurrentMouse.Y}, + {finalCurrentMouse.X + (int)(10.0f*sample.AirVelocityX), finalCurrentMouse.Y + (int)(10.0f*sample.AirVelocityY)}); + } + if (wallBrush) { finalCurrentMouse = c->NormaliseBlockCoord(finalCurrentMouse);