stop sound in unity
audioSource.Play();//Start playing
audioSource.Stop();//Stop playing
stop sound in unity
audioSource.Play();//Start playing
audioSource.Stop();//Stop playing
stop audio unity
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public AudioSource MyAudioSource; //put your object in inspector that have the audio
void Update(){
if (Input.GetKeyDown(KeyCode.Escape)) //When press ESC to pause the game
{
if (Time.timeScale == 0)
{
MyAudioSource.Stop();
}
else
{
MyAudioSource.Play();
}
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us