feat: add tutorial section

This commit is contained in:
2026-04-10 05:17:30 +08:00
parent 222621139e
commit 5323aea5fb
16 changed files with 828 additions and 5 deletions
+4 -1
View File
@@ -50,7 +50,10 @@ func _process(delta):
player.grab_item(player.current_position)
if move_vec != Vector2i.ZERO:
var target_position = player.current_position + move_vec
var base_pos = player.current_position
if movement_manager.is_moving and player.target_position != Vector2i(-1, -1):
base_pos = player.target_position
var target_position = base_pos + move_vec
movement_manager.simple_move_to(target_position)