removes print statements
This commit is contained in:
parent
9bb3308487
commit
dd73e1b477
2
card.gd
2
card.gd
@ -29,11 +29,9 @@ func _gui_input(event: InputEvent) -> void:
|
|||||||
match event.button_index:
|
match event.button_index:
|
||||||
MOUSE_BUTTON_LEFT:
|
MOUSE_BUTTON_LEFT:
|
||||||
if event.pressed:
|
if event.pressed:
|
||||||
print("down!")
|
|
||||||
is_dragging = true
|
is_dragging = true
|
||||||
mouse_offset = get_global_mouse_position() - global_position
|
mouse_offset = get_global_mouse_position() - global_position
|
||||||
else:
|
else:
|
||||||
print("up!")
|
|
||||||
is_dragging = false
|
is_dragging = false
|
||||||
MOUSE_BUTTON_RIGHT:
|
MOUSE_BUTTON_RIGHT:
|
||||||
pass
|
pass
|
||||||
|
Loading…
x
Reference in New Issue
Block a user