Select your preferred scripting language. All code snippets will be displayed in this language.
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
Closeclip | The clip being played. |
volumeScale | The scale of the volume (0-1). |
Plays an AudioClip, and scales the AudioSource volume by volumeScale.
@script RequireComponent(AudioSource) // Play impact audio clip at volume 0.7 var impact : AudioClip; function OnCollisionEnter () { audio.PlayOneShot(impact, 0.7); }
using UnityEngine; using System.Collections; [RequireComponent(typeof(AudioSource))] public class ExampleClass : MonoBehaviour { public AudioClip impact; void OnCollisionEnter() { audio.PlayOneShot(impact, 0.7F); } }
import UnityEngine import System.Collections [RequireComponent(typeof(AudioSource))] public class ExampleClass(MonoBehaviour): public impact as AudioClip def OnCollisionEnter() as void: audio.PlayOneShot(impact, 0.7F)
See Also: AudioSource.Play.