Inhibit synth triggers if too late
use_timing_guarantees  bool (true_or_false)
If set to true, synths will not trigger if it is too late. If false, some synth triggers may be late.
Introduced in v2.10
Examples
 
  | # Example 1 | 
 
  | 
    
use_timing_guarantees true
sample :loop_amen 
  
   | 
  
    
 
#=> if time is behind by any margin, this will not trigger
  
   | 
 
 
  | # Example 2 | 
 
  | 
    
use_timing_guarantees false
sample :loop_amen 
  
   | 
  
    
 
#=> unless time is too far behind, this will trigger even when late.
  
   |