1
0
forked from cgvr/DeltaVR

add sound effects to button, mic stand, model generation, shape scanner

This commit is contained in:
2026-01-25 15:10:42 +02:00
parent 75bd66fc36
commit ec45c402af
8 changed files with 32 additions and 4 deletions

View File

@@ -34,6 +34,7 @@ public class MicrophoneStand : MonoBehaviour
{
microphoneOffStatus.SetActive(false);
microphoneOnStatus.SetActive(true);
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.RadioButton, gameObject);
fmodWhisperBridge.ActivateRecording();
}
}
@@ -45,6 +46,7 @@ public class MicrophoneStand : MonoBehaviour
{
microphoneOffStatus.SetActive(true);
microphoneOnStatus.SetActive(false);
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.RadioButton, gameObject);
fmodWhisperBridge.DeactivateRecording();
}
}