2020-04-19 01:48:15 +00:00
|
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
using UnityEngine.UI;
|
|
|
|
|
|
|
|
|
|
[RequireComponent(typeof(AudioSource))]
|
|
|
|
|
public class SoundPitchAdjust : MonoBehaviour
|
|
|
|
|
{
|
|
|
|
|
private GameController gameController;
|
|
|
|
|
private AudioSource audioSource;
|
|
|
|
|
|
|
|
|
|
private void Awake() {
|
|
|
|
|
gameController = GameObject.FindGameObjectWithTag("GameController").GetComponent<GameController>();
|
|
|
|
|
audioSource = GetComponentInChildren<AudioSource>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void Start() {
|
|
|
|
|
gameController.OnSpeedChange += OnSpeedChange;
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-19 21:30:25 +00:00
|
|
|
|
private void OnDestroy() {
|
|
|
|
|
gameController.OnSpeedChange -= OnSpeedChange;
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-19 01:48:15 +00:00
|
|
|
|
private void OnSpeedChange(float previous, float current) {
|
|
|
|
|
audioSource.pitch = current;
|
|
|
|
|
}
|
|
|
|
|
}
|