“Arrêtez l'unité audio” Réponses codées

Arrêtez l'unité audio

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();
            }
        }
        
        }
Zarden

arrêter le son dans l'unité

audioSource.Play();//Start playing
audioSource.Stop();//Stop playing
Successful Sandpiper

Unity Stop All Audio

// unity stop all sound by yasin
 private var allAudioSources : AudioSource[];
  
 function Awake() {
     allAudioSources = FindObjectsOfType(AudioSource) as AudioSource[];
 }
  
 function StopAllAudio() {
     for(var audioS : AudioSource in allAudioSources) {
         audioS.Stop();
     }
 }
Yasin

Réponses similaires à “Arrêtez l'unité audio”

Questions similaires à “Arrêtez l'unité audio”

Plus de réponses similaires à “Arrêtez l'unité audio” dans C#

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code