feedback
Chorus feedback. Controls how much of the wet signal gets fed back into the chorus buffer. 0.0 to 1.0. Default = 0.0.
Read time 1 minuteLast updated 5 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.AudioModule
public float feedback { get; set; }
Examples
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; }}