diff --git a/card.gd b/card.gd index 866dcbf..fff3761 100644 --- a/card.gd +++ b/card.gd @@ -29,11 +29,9 @@ func _gui_input(event: InputEvent) -> void: match event.button_index: MOUSE_BUTTON_LEFT: if event.pressed: - print("down!") is_dragging = true mouse_offset = get_global_mouse_position() - global_position else: - print("up!") is_dragging = false MOUSE_BUTTON_RIGHT: pass