Skip to content

Commit

Permalink
fix: disable recorder in prod (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
florianvazelle authored Dec 1, 2024
1 parent c315058 commit 2436d17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/recorder/recorder.gd
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ func _ready() -> void:
set_process(false)
set_process_input(false)

if not Engine.is_editor_hint():
if not Engine.is_editor_hint() and OS.is_debug_build():
set_process(true)
set_process_input(true)

Expand Down

0 comments on commit 2436d17

Please sign in to comment.