summaryrefslogtreecommitdiff
path: root/GameCode/GlobalAudioListener.cs
diff options
context:
space:
mode:
authorchai <215380520@qq.com>2024-05-19 16:05:01 +0800
committerchai <215380520@qq.com>2024-05-19 16:05:01 +0800
commitc5f145786f4c6d2fe4bea831dfc16e52228920a5 (patch)
treea6ead7ea8266c767d58ed0f816dcd7a1dd75bd65 /GameCode/GlobalAudioListener.cs
parent48b64e573a1709dc923cb9162b55be0246b3ff63 (diff)
* move
Diffstat (limited to 'GameCode/GlobalAudioListener.cs')
-rw-r--r--GameCode/GlobalAudioListener.cs48
1 files changed, 0 insertions, 48 deletions
diff --git a/GameCode/GlobalAudioListener.cs b/GameCode/GlobalAudioListener.cs
deleted file mode 100644
index 28a5019..0000000
--- a/GameCode/GlobalAudioListener.cs
+++ /dev/null
@@ -1,48 +0,0 @@
-using UnityEngine;
-
-public class GlobalAudioListener : MonoBehaviour
-{
- public static GlobalAudioListener instance;
-
- private PlayerInteraction bufferedPlayerInteraction;
-
- private Transform bufferedTargetTransform;
-
- private Vector3 offset = new Vector3(0f, 2f, 0f);
-
- private void Awake()
- {
- if (instance != null)
- {
- Object.Destroy(base.gameObject);
- return;
- }
- instance = this;
- Object.DontDestroyOnLoad(base.gameObject);
- }
-
- private void Update()
- {
- PlayerInteraction playerInteraction = PlayerInteraction.instance;
- if (bufferedPlayerInteraction != playerInteraction)
- {
- if (playerInteraction == null)
- {
- bufferedTargetTransform = null;
- }
- else
- {
- bufferedTargetTransform = playerInteraction.transform;
- }
- }
- if (bufferedTargetTransform != null)
- {
- base.transform.position = bufferedTargetTransform.position + offset;
- }
- else
- {
- base.transform.position = Vector3.zero;
- }
- bufferedPlayerInteraction = playerInteraction;
- }
-}