AudioSource.Pausefunction Pause () : voidDescriptionPauses playing the clip.
JavaScripts
audio.Pause();
using UnityEngine;
using System.Collections; public class example : MonoBehaviour { void Awake() { audio.Pause(); } } |
