Remove a function from the chain.
(self, function, update=True)
| 692 | self._update() |
| 693 | |
| 694 | def remove(self, function, update=True): |
| 695 | """Remove a function from the chain.""" |
| 696 | self._funcs.remove(function) |
| 697 | self._remove_dep(function) |
| 698 | if update: |
| 699 | self._update() |
| 700 | |
| 701 | def definition(self, obj_names, version, shader): |
| 702 | name = obj_names[self] |