diff --git a/godot_ship/script/game/moveShip.gd b/godot_ship/script/game/moveShip.gd index c419f25..a7a82d8 100644 --- a/godot_ship/script/game/moveShip.gd +++ b/godot_ship/script/game/moveShip.gd @@ -22,7 +22,7 @@ func _input(event): if held and not event.pressed: held = false; - position = position.snapped(Vector2(32, 32)) + Vector2(2, 2) + position = position.snapped(Vector2(32, 32)) + Vector2(4, 4) if event is InputEventMouseMotion and held: position = event.position;