The handler for the effect, It is automaticly fetched from effects/ .py if the file exists the first time this property is accessed.
(self)
| 59 | |
| 60 | @property |
| 61 | def handler(self): |
| 62 | """ |
| 63 | The handler for the effect, |
| 64 | It is automaticly fetched from effects/<effectName>.py if the file exists |
| 65 | the first time this property is accessed. |
| 66 | """ |
| 67 | if not self.__generated: |
| 68 | pyfalog.debug("Generating effect: {0} ({1}) [runTime: {2}]", self.name, self.effectID, self.runTime) |
| 69 | self.__generateHandler() |
| 70 | |
| 71 | return self.__handler |
| 72 | |
| 73 | @property |
| 74 | def runTime(self): |
nothing calls this directly
no test coverage detected