Legacy Documentation: Version 4.6(go to latest)
Language: English
  • C#
  • JS
  • Boo

Script language

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

AudioLowPassFilter.cutoffFrequency

Switch to Manual
public var cutoffFrequency: float;

Description

Lowpass cutoff frequency in hz. 10.0 to 22000.0. Default = 5000.0.

	// Moves the cuttoutFrequency from 10 to 22000 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).cutoffFrequency = (Mathf.Sin(Time.time)*11010 + 11000); }