Legacy Documentation: Version 5.1
LanguageEnglish
  • C#
  • JS

Script language

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

AudioLowPassFilter.lowpassResonanceQ

Switch to Manual
public var lowpassResonanceQ: float;

Description

Determines how much the filter's self-resonance is dampened.

Higher Lowpass Resonance Q indicates a lower rate of energy loss i.e. the oscillations die out more slowly.

Lowpass resonance Q value goes from 1.0 to 10.0. Default = 1.0.

	// Moves the Lowpass Resonance Quality Factor from 0 to 10 following a Sinus function
	// Attach this to an audio source with a LowPassFilter to listen it working.

@script RequireComponent(AudioSource) @script RequireComponent(AudioLowPassFilter)

function Update() { GetComponent.<AudioLowPassFilter>().lowpassResonanceQ = (Mathf.Sin(Time.time)*5 + 5); }