Legacy Documentation: Version 5.1
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Obsolete
feedback is deprecated, this property does nothing.

AudioChorusFilter.feedback

Switch to Manual
public var feedback: float;

Description

Chorus feedback. Controls how much of the wet signal gets fed back into the chorus buffer. 0.0 to 1.0. Default = 0.0.

	// Process only once the signal and dont introduce feedback to the filter.

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

function Start() { GetComponent.<AudioChorusFilter>().feedback = 0; }