Files @ 7adc65771676
Branch filter:

Location: light9/nodes/delay.py

drewp
big restructuring - moved lots of things (including most panels) to other files
"""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}