All of the assets I need right now are done.

This commit is contained in:
Zed A. Shaw 2025-02-12 11:18:24 -05:00
parent 4027b70867
commit d38e2cb0f2
5 changed files with 11 additions and 10 deletions

View file

@ -255,8 +255,6 @@ namespace gui {
}
void FSM::render() {
draw_gui();
if(in_state(State::MAPPING)) {
$window.clear();
$map_view.render();
@ -268,6 +266,7 @@ namespace gui {
auto elapsed = std::chrono::duration<double>(end - start);
$stats.sample(1/elapsed.count());
draw_gui();
draw_weapon();
}