Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

var loop: bool;
bool loop;
loop as bool

Description

Is the audio clip looping?

If you disable looping on a playing AudioSource the sound will stop after the end of the current loop.

	@script RequireComponent(AudioSource)
	// Stop looping the sound
	function Start()
	{
		audio.loop = false;
	}
using UnityEngine;
using System.Collections;

[RequireComponent(typeof(AudioSource))]
public class ExampleClass : MonoBehaviour {
    void Start() {
        audio.loop = false;
    }
}
import UnityEngine
import System.Collections

[RequireComponent(typeof(AudioSource))]
public class ExampleClass(MonoBehaviour):

	def Start() as void:
		audio.loop = false