diff options
| author | yum <yum.food.vr@gmail.com> | 2023-08-11 11:29:02 -0700 |
|---|---|---|
| committer | yum <yum.food.vr@gmail.com> | 2023-08-11 11:29:02 -0700 |
| commit | 3efa1498c7ff8012735d6773b56e19f67cf11a02 (patch) | |
| tree | 018f9d97e05b5cb1a12b8a6ce4703bd2a3718422 /Scripts/transcribe.py | |
| parent | 52ca7435f788e9bf981c7786046d5ca093e9688d (diff) | |
Animate pre-speech ellipsis
Text box now shows an animated ellipsis prior to first speech.
Diffstat (limited to 'Scripts/transcribe.py')
| -rw-r--r-- | Scripts/transcribe.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Scripts/transcribe.py b/Scripts/transcribe.py index c86d1db..8a10783 100644 --- a/Scripts/transcribe.py +++ b/Scripts/transcribe.py @@ -539,6 +539,7 @@ def readKeyboardInput(audio_state, enable_local_beep: bool, if not use_builtin: osc_ctrl.toggleBoard(audio_state.osc_state.client, True) osc_ctrl.lockWorld(audio_state.osc_state.client, False) + osc_ctrl.ellipsis(audio_state.osc_state.client, True) if audio_state.reset_on_toggle: if audio_state.enable_debug_mode: print("Toggle detected, dropping transcript (2)") @@ -654,6 +655,7 @@ def readControllerInput(audio_state, enable_local_beep: bool, if not use_builtin: osc_ctrl.toggleBoard(audio_state.osc_state.client, True) osc_ctrl.lockWorld(audio_state.osc_state.client, False) + osc_ctrl.ellipsis(audio_state.osc_state.client, True) if audio_state.reset_on_toggle: if audio_state.enable_debug_mode: print("Toggle detected, dropping transcript (3)") |
