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

スクリプト言語

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

AudioChorusFilter.dryMix

Switch to Manual
public var dryMix: float;

Description

出力のときの音量の大きさ(デフォルトは0.5)。

	// Dont mix the original sound with the filter, only use the processed output

	@script RequireComponent(AudioSource)
	@script RequireComponent(AudioChorusFilter)

	function Start() {
		GetComponent(AudioChorusFilter).dryMix = 0;
	}