-
Notifications
You must be signed in to change notification settings - Fork 3
/
__init__.py
33 lines (28 loc) · 895 Bytes
/
__init__.py
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
32
33
from .py.scene import Scene
from .py.components.composition import Composition
from .py.components.action import Action
from .py.components.character.character import Character
from .py.components.clothes import Clothes
from .py.components.environment import Environment
from .py.cozy_spoke import initialize_cozy_spoke
initialize_cozy_spoke()
# Mappings
NODE_CLASS_MAPPINGS = {
"Scene": Scene,
"Composition": Composition,
"Action": Action,
"Character": Character,
"Clothes": Clothes,
"Environment": Environment,
}
NODE_DISPLAY_NAME_MAPPINGS = {
"Scene": "🎞️ Scene",
"Composition": "📹 Composition",
"Action": "🎬 Action",
"Character": "👤 Character",
"Clothes": "👕 Clothes",
"Environment": "⛅️ Environment",
}
WEB_DIRECTORY = "js"
__all__ = ['NODE_CLASS_MAPPINGS',
"NODE_DISPLAY_NAME_MAPPINGS", "WEB_DIRECTORY"]