File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 2020
2121from meshroom .core .submitter import BaseSubmitter
2222from . import desc
23+ from .desc import builtins
2324
2425# Setup logging
2526logging .basicConfig (format = '[%(asctime)s][%(levelname)s] %(message)s' , level = logging .INFO )
@@ -337,6 +338,9 @@ def initNodes():
337338 for f in nodesFolders :
338339 loadAllNodes (folder = f )
339340
341+ # Load all of the builtin Node Plugins
342+ initBuiltinNodePlugins ()
343+
340344
341345def initSubmitters ():
342346 meshroomFolder = os .path .dirname (os .path .dirname (__file__ ))
@@ -357,3 +361,8 @@ def initPipelines():
357361 loadPipelineTemplates (f )
358362 else :
359363 logging .error ("Pipeline templates folder '{}' does not exist." .format (f ))
364+
365+ def initBuiltinNodePlugins ():
366+ """ Registers the Builtin plugins for Meshroom.
367+ """
368+ registerNodeType (builtins .Backdrop )
You can’t perform that action at this time.
0 commit comments