Pauses playing the clip.
function Start() { audio.Pause(); }
using UnityEngine; using System.Collections; public class Example : MonoBehaviour { void Start() { audio.Pause(); } }
import UnityEngine import System.Collections public class Example(MonoBehaviour): def Start() as void: audio.Pause()