Real time conversion
rt  seconds (number)
Real time representation. Returns the amount of beats for the value in real-time seconds. Useful for bypassing any bpm scaling
Introduced in v2.0
Example
 
  | # Example 1 | 
  | 
use_bpm 120 
  play 50
  sleep 1     
  play 62
  sleep rt(1) 
  play 72
 | 
# modifies all time to be half
 
# actually sleeps for half of a second
 
# bypasses bpm scaling and sleeps for a second
 
 |