(self)
| 573 | @property |
| 574 | @gui.editor_attribute_decorator('WidgetSpecific','The gamma value', float, {'default':0, 'min':0, 'max':1.0, 'step':0.0001}) |
| 575 | def gamma(self): return self.__gamma |
| 576 | @gamma.setter |
| 577 | def gamma(self, v): self.__gamma = v; self.process() |
| 578 |