Source code for blenderproc.python.modules.main.Provider


[docs]class Provider: """ A provider returns parameter values dynamically based on its configuration. """ def __init__(self, config): self.config = config
[docs] def run(self): raise NotImplementedError("Please implement this method")