// title: SeekerHit // author: Modanung // description: // Seekers are something you should avoid. // I put this code through Rakarrack to get some samples for heXon. // heXon is a FOSS dual stick arcade shooter available at www.LucKeyProductions.nl // code: ( { var time = 0.23; var freq = (55).midicps; var a = VarSaw.ar(freq/2, width: XLine.ar(0.5,1,time)).range(0,XLine.ar(0.666,1/666,time)); var tone = SinOsc.ar(freq).fold(-0.23*a,a) * EnvGen.ar(Env([1,0],[time])); Out.ar(0, tone.dup); }.play; )