|
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
class example(MonoBehaviour):
def Start():
audio.Pause()