remove a crufty folder that's done nothing for quite a while...
[supercollider.git] / build / SCClassLibrary / JITLib / ProxySpace / TempoBusClock.sc
blob10a07a956c8d87688730a767ed05aa298c0222b7
3 TempoBusClock : TempoClock {
4         var <>control;
5         classvar <>default;
6         
7         *new { arg control, tempo, beats, seconds;
8                 ^super.new(tempo, beats, seconds).control_(control)
9         }
10         
11         setTempoAtBeat { arg newTempo, beats;
12                 control.set(\fadeTime, 0.0, \tempo, newTempo);
13                 ^super.setTempoAtBeat(newTempo, beats)
14         }
15         
16         setTempoAtSec { arg newTempo, secs;
17                 control.set(\fadeTime, 0.0, \tempo, newTempo)
18                 ^super.setTempoAtSec(newTempo, secs)
19         }