1
0
forked from cgvr/DeltaVR

Unity pipeline scripts cleanup + enable dev build

This commit is contained in:
2025-12-17 15:46:57 +02:00
parent 409b9fbb51
commit b424c6467b
6 changed files with 6 additions and 15 deletions

View File

@@ -35,7 +35,6 @@ public class VoiceTranscriptionBox : MonoBehaviour
isLoading = false;
whisper.OnNewSegment += OnNewSegment;
whisper.OnProgress += OnProgressHandler;
microphoneRecord.OnRecordStop += OnRecordStop;
}
@@ -105,11 +104,6 @@ public class VoiceTranscriptionBox : MonoBehaviour
isLoading = false;
}
private void OnProgressHandler(int progress)
{
UnityEngine.Debug.Log($"Progress: {progress}%");
}
private void OnNewSegment(WhisperSegment segment)
{
_buffer += segment.Text;