Merge pull request 'disable monitor key if not debugging' (#53) from feature/disable_monitor_key into develop

Reviewed-on: #53
This commit is contained in:
Chris Cromer 2022-09-22 16:48:44 -03:00
commit 4298dfb4c0
1 changed files with 2 additions and 2 deletions

View File

@ -133,11 +133,11 @@ func _physics_process(_delta: float) -> void:
frames.append(frame)
if Input.is_action_just_pressed("Send"):
if debug and Input.is_action_just_pressed("Send"):
stop_monitor()
send_data()
else:
if Input.is_action_just_pressed("Send"):
if debug and Input.is_action_just_pressed("Send"):
start_monitor()
else:
get_tree().paused = false