1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
using UnityEngine; public class PlayOneShotAfterSeconds : MonoBehaviour { public float initialDelay = 1f; public ThronefallAudioManager.AudioOneShot type; private float timer; private void Update() { if (timer <= initialDelay) { timer += Time.deltaTime; if (timer > initialDelay) { ThronefallAudioManager.WorldSpaceOneShot(type, base.transform.position); } } } }