diff --git a/gmtk_2024/scripts/player_movement.gd b/gmtk_2024/scripts/player_movement.gd index 41cf1b2..54d84c2 100644 --- a/gmtk_2024/scripts/player_movement.gd +++ b/gmtk_2024/scripts/player_movement.gd @@ -24,7 +24,7 @@ func get_input(): velocity.x = input_direction * speed - if is_on_floor(): + if is_on_floor(): # rest the jump count jump_count_current = jump_count if Input.is_action_just_pressed("player_jump") and jump_count_current > 0: diff --git a/gmtk_2024/textures/level01-spritesheet.png b/gmtk_2024/textures/level01-spritesheet.png new file mode 100644 index 0000000..a746179 Binary files /dev/null and b/gmtk_2024/textures/level01-spritesheet.png differ