1
0
forked from cgvr/DeltaVR

change mic icon colour to grey/green

This commit is contained in:
2026-02-28 15:42:15 +02:00
parent d6a63a5de6
commit dfdb47b94a
8 changed files with 316 additions and 17 deletions

View File

@@ -11,7 +11,6 @@ public class MicrophoneProximityTrigger : MonoBehaviour
{
if (isEnter && other.gameObject.tag == "Player Head")
{
Debug.Log("collided with: " + other.gameObject.name);
mic.OnPlayerApproach();
}
}
@@ -20,7 +19,6 @@ public class MicrophoneProximityTrigger : MonoBehaviour
{
if (!isEnter && other.gameObject.tag == "Player Head")
{
Debug.Log("collider left with: " + other.gameObject.name);
mic.OnPlayerLeave();
}
}