Highpass 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 HighPassFilter to listen it working.
@script RequireComponent(AudioSource) @script RequireComponent(AudioHighPassFilter)
function Update() { GetComponent.<AudioHighPassFilter>().cutoffFrequency = (Mathf.Sin(Time.time)*11010 + 11000); }
no example available in C#
Did you find this page useful? Please give it a rating: