Version: 5.3 (switch to 5.4b)
言語English
  • C#
  • JS

スクリプト言語

好きな言語を選択してください。選択した言語でスクリプトコードが表示されます。

AudioSource.mute

マニュアルに切り替える
public bool mute;

説明

UnMute と Mute 、 AudioSource 。 Mute は Volume = 0 に設定し、 UnMute は元のボリュームの値に戻します。

	// Mutes-Unmutes the sound from this object each time the user presses space.
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { AudioSource audio; void Start() { audio = GetComponent<AudioSource>(); } void Update() { if (Input.GetKeyDown(KeyCode.Space)) if (audio.mute) audio.mute = false; else audio.mute = true; } }