言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

AudioSource.spread

Switch to Manual
public var spread: float;

Description

3D ステレオやスピーカー空間の、マルチチャンネルサウンドのアングルの

広さを設定する。

	// when any AudioSource goes trough this transform, it will set it as 'mono'
	// and will restore the value to 3D effect after exiting
	// Make sure the audio source has a collider.
	function OnTriggerEnter(other : Collider) {
		 if(other.audio)
			other.audio.spread = 0;
	}

	function OnTriggerExit(other : Collider) {
		 if(other.audio)
			other.audio.spread = 360;
	}