1
0
Fork 0
mirror of https://github.com/Orama-Interactive/Pixelorama.git synced 2025-01-31 07:29:49 +00:00

Removed uneccesary code from Canvas.gd that prevented _input() from executing if Space was being pressed

This commit is contained in:
OverloadedOrama 2020-01-09 20:51:03 +02:00
parent 48e871586c
commit 16e92b0e9f

View file

@ -95,13 +95,6 @@ func _input(event : InputEvent) -> void:
if Global.current_frame == frame && Global.has_focus:
update()
# We don't want to draw when pressing space, because it's used for panning
if Input.is_action_pressed("space"):
previous_mouse_pos = current_pixel
previous_mouse_pos.x = clamp(previous_mouse_pos.x, location.x, location.x + size.x)
previous_mouse_pos.y = clamp(previous_mouse_pos.y, location.y, location.y + size.y)
return
sprite_changed_this_frame = false
var mouse_pos := current_pixel
var mouse_pos_floored := mouse_pos.floor()