|
|
import traceback
|
|
|
|
|
|
NODE_CLASS_MAPPINGS = {}
|
|
|
|
|
|
|
|
|
try:
|
|
|
from . import SwarmRemBg
|
|
|
NODE_CLASS_MAPPINGS.update(SwarmRemBg.NODE_CLASS_MAPPINGS)
|
|
|
except ImportError:
|
|
|
print("Error: [Swarm] RemBg not available")
|
|
|
traceback.print_exc()
|
|
|
|
|
|
try:
|
|
|
from . import SwarmSaveAnimationWS
|
|
|
NODE_CLASS_MAPPINGS.update(SwarmSaveAnimationWS.NODE_CLASS_MAPPINGS)
|
|
|
except ImportError:
|
|
|
print("Error: [Swarm] SaveAnimationWS not available")
|
|
|
traceback.print_exc()
|
|
|
|
|
|
try:
|
|
|
from . import SwarmYolo
|
|
|
NODE_CLASS_MAPPINGS.update(SwarmYolo.NODE_CLASS_MAPPINGS)
|
|
|
except ImportError:
|
|
|
print("Error: [Swarm] Yolo not available")
|
|
|
traceback.print_exc()
|
|
|
|