Files @ 1d4e406d19e6
Branch filter:

Location: light9/nodes/delay.py - annotation

drewp@bigasterisk.com
add new ascoltami that uses mpd
"""delay node outputs the input a fixed time later"""


class DelayOps(Ops):
    def clocked(self, input, output, stateaccess):
        stateaccess.buffer


class Delay(Node):
    def __init__(self):
        Node.__init__(self)
        
    def getnodeparams(self):
        return {'delay':State.Time}