-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
31 lines (23 loc) · 819 Bytes
/
__init__.py
File metadata and controls
31 lines (23 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# from .SeamlessTile import (CircularVAEDecode, MakeCircularVAE, OffsetImage,
# SeamlessTile)
# NODE_CLASS_MAPPINGS = {
# "SeamlessTile": SeamlessTile,
# "CircularVAEDecode": CircularVAEDecode,
# "MakeCircularVAE": MakeCircularVAE,
# "OffsetImage": OffsetImage,
# }
# NODE_DISPLAY_NAME_MAPPINGS = {
# "SeamlessTile": "Seamless Tile",
# "CircularVAEDecode": "Circular VAE Decode (tile)",
# "MakeCircularVAE": "Make Circular VAE",
# "OffsetImage": "Offset Image",
# }
# __all__ = [NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS]
from .AsymTiling import (AsymTiling)
NODE_CLASS_MAPPINGS = {
"AsymTiling": AsymTiling,
}
NODE_DISPLAY_NAME_MAPPINGS = {
"AsymTiling": "asymmetric-tiling",
}
__all__ = [NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS]