mirror of
https://github.com/tusharbhutt/Endless-Nodes.git
synced 2026-03-21 20:42:12 -03:00
17 lines
478 B
Python
17 lines
478 B
Python
from .endless_randomizers import (
|
|
EndlessNode_Mayhem,
|
|
EndlessNode_Chaos,
|
|
EndlessNode_Pandemonium,
|
|
)
|
|
|
|
NODE_CLASS_MAPPINGS = {
|
|
"Randomizer_Mayhem": EndlessNode_Mayhem,
|
|
"Randomizer_Chaos": EndlessNode_Chaos,
|
|
"Randomizer_Pandemonium": EndlessNode_Pandemonium,
|
|
}
|
|
|
|
NODE_DISPLAY_NAME_MAPPINGS = {
|
|
"Randomizer_Mayhem": "Mayhem Randomizer",
|
|
"Randomizer_Chaos": "Chaos Randomizer",
|
|
"Randomizer_Pandemonium": "Pandemonium Randomizer",
|
|
} |