fix: delta time plotter is interactive

This commit is contained in:
MihailRis 2024-07-26 12:45:44 +03:00
parent 664faf35e9
commit 3deb7ff830

View File

@ -175,6 +175,7 @@ Hud::Hud(Engine* engine, LevelFrontend* frontend, Player* player)
auto dplotter = std::make_shared<Plotter>(350, 250, 2000, 16);
dplotter->setGravity(Gravity::bottom_right);
dplotter->setInteractive(false);
add(HudElement(hud_element_mode::permanent, nullptr, dplotter, true));
}