Version: 2022.3
LanguageEnglish
  • C#
Method group is Obsolete

AudioChorusFilter.feedback

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual
Obsolete Warning! Feedback is deprecated. This property does nothing. public float feedback;

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.

using UnityEngine;

[RequireComponent(typeof(AudioSource))] [RequireComponent(typeof(AudioChorusFilter))] public class Example : MonoBehaviour { // Process only once the signal and dont introduce feedback to the filter. void Start() { GetComponent<AudioChorusFilter>().feedback = 0f; } }