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