This function is called instead of main processing for AlwaysVisible scripts. You can modify the processing object (p) here, inject hooks, etc. args contains all values returned by components from ui()
(self, p: StableDiffusionProcessing, *args)
| 119 | pass # pylint: disable=unnecessary-pass |
| 120 | |
| 121 | def process_images(self, p: StableDiffusionProcessing, *args): |
| 122 | """ |
| 123 | This function is called instead of main processing for AlwaysVisible scripts. |
| 124 | You can modify the processing object (p) here, inject hooks, etc. |
| 125 | args contains all values returned by components from ui() |
| 126 | """ |
| 127 | pass # pylint: disable=unnecessary-pass |
| 128 | |
| 129 | def before_process_batch(self, p: StableDiffusionProcessing, *args, **kwargs): |
| 130 | """ |
no outgoing calls
no test coverage detected