def __init__(self, parent): NodeBase.__init__(self, "AND", parent) self.addOut("Out") self.addIn("In 1", InSocket) self.addIn("In 2", InSocket)
def __init__(self, parent): NodeBase.__init__(self, "OUT", parent) self.addIn("In 1", InSocket)
def __init__(self, parent): NodeBase.__init__(self, "IN", parent) self.addOut("Out") self.addIn("In", NumericSocket)