“Fonte de áudio PAUSE UNIDADE” Respostas de código

Pausa a unidade de áudio

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

Fonte de áudio PAUSE UNIDADE


using UnityEngine;[RequireComponent(typeof(AudioSource))]
public audioSource audioSource  = GetComponent<AudioSource>();

void Start();{
	audioSource.Pause();
}

Sore Starling

Respostas semelhantes a “Fonte de áudio PAUSE UNIDADE”

Perguntas semelhantes a “Fonte de áudio PAUSE UNIDADE”

Mais respostas relacionadas para “Fonte de áudio PAUSE UNIDADE” em C#

Procure respostas de código populares por idioma

Procurar outros idiomas de código