Added the possibility to go frame by frame pressing '.'

This commit is contained in:
Karma Riuk 2023-05-17 13:18:51 +02:00
parent 37a76e3e8d
commit 33cbe4a683

View File

@ -199,6 +199,10 @@ gint keyboard_input(GtkWidget* widget, GdkEventKey* event) {
case GDK_KEY_g: case GDK_KEY_g:
param_control_activate(&gravity_control); param_control_activate(&gravity_control);
return TRUE; return TRUE;
case GDK_KEY_period: // evaluate and draw single frame
update_state();
gtk_widget_queue_draw(canvas);
return TRUE;
case GDK_KEY_P: case GDK_KEY_P:
case GDK_KEY_p: case GDK_KEY_p:
game_animation_on_off(); game_animation_on_off();