We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents da699e2 + d6ea0b2 commit d1f14faCopy full SHA for d1f14fa
omni/base/autoplotters.py
@@ -26,6 +26,7 @@ def __init__(self,mode='supervised'):
26
self.loader_name = None
27
self.loader_ran = False
28
self.script_name = None
29
+ self.residue = {}
30
31
def register_loader(self,name,function):
32
"""
@@ -57,6 +58,7 @@ def autoplot(self,out=None):
57
58
status('executing plot function `%s`'%plot_name,tag='autoplot')
59
if plot_name not in self.plot_functions:
60
raise Exception('this script does not have a plot function named %s'%plot_name)
61
+
62
self.plot_functions.update(**self.residue)
63
self.plot_functions[plot_name]()
64
0 commit comments