Class: Ruck::UGen::UGenShreduler

Inherits:
Shreduler
  • Object
show all
Defined in:
lib/ruck/ugen/ugen.rb

Instance Method Summary collapse

Instance Method Details

#runObject



11
12
13
# File 'lib/ruck/ugen/ugen.rb', line 11

def run
  super
end

#sim_to(new_now) ⇒ Object



15
16
17
18
19
20
# File 'lib/ruck/ugen/ugen.rb', line 15

def sim_to(new_now)
  while @now < new_now.to_i
    BLACKHOLE.next @now
    @now += 1
  end
end