Implement Compass Image Loader node with dynamic directory discovery and autocomplete

This commit is contained in:
2026-04-22 09:18:52 -07:00
parent 56bee4b747
commit 0db6ca8277
3 changed files with 282 additions and 0 deletions

9
__init__.py Normal file
View File

@@ -0,0 +1,9 @@
from .compass_image_loader import CompassImageLoader
NODE_CLASS_MAPPINGS = {
"CompassImageLoader": CompassImageLoader,
}
NODE_DISPLAY_NAME_MAPPINGS = {
"CompassImageLoader": "Compass Image Loader",
}