Files @ 2f48cb9219ed
Branch filter:

Location: light9/nodes/delay.py - annotation

drewp
now does a little show, with two fades
"""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}