Определяет затухание собственного фильтра резонанса (filter's self-resonance).
Higher Highpass resonance Q indicates a lower rate of
energy loss i.e. the oscillations die out more slowly.
Значение резонанса фильтра высоких частот Q от 1.0 до 10.0. По умолчанию 1.0.
using UnityEngine; using System.Collections;
[RequireComponent(typeof(AudioSource))] [RequireComponent(typeof(AudioHighPassFilter))] public class ExampleClass : MonoBehaviour { void Update() { GetComponent<AudioHighPassFilter>().highpassResonanceQ = Mathf.Sin(Time.time) * 5 + 5; } }