Called when an addon is first loaded. This event receives a Loader object, which contains methods for adding options and commands. This method is where the addon configures itself.
| 119 | |
| 120 | @dataclass |
| 121 | class LoadHook(hooks.Hook): |
| 122 | """ |
| 123 | Called when an addon is first loaded. This event receives a Loader |
| 124 | object, which contains methods for adding options and commands. This |
| 125 | method is where the addon configures itself. |
| 126 | """ |
| 127 | |
| 128 | loader: Loader |
| 129 | |
| 130 | |
| 131 | class AddonManager: |
no outgoing calls
no test coverage detected
searching dependent graphs…