I have attached this script to the Audio GameObject I want to delay but i don’t get any delay.
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class DelayAudio : MonoBehaviour {
// Use this for initialization
void Start ()
{
AudioSource audio = GetComponent<AudioSource>();
audio.PlayDelayed(3);
}
}