// ChuGen // Create new UGens by performing audio-rate processing in ChucK class Over extends Chugen { fun float tick(float in) { if (in > 0.9) <<< in, "BANG!!" >>>; if (in < -0.9) <<< in, "NBANG!!" >>>; return in; } } adc => Over of => dac; while(true) 1::second => now;