Create __init__.py

This commit is contained in:
patientx 2025-09-02 18:09:34 +03:00 committed by GitHub
parent 8083aef321
commit a23053feda
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,12 @@
from .cfz_caching_condition import save_conditioning, load_conditioning
# CFZ Save-Load Conditioning Node Pack
NODE_CLASS_MAPPINGS = {
"CFZ_save_conditioning": save_conditioning,
"CFZ_load_conditioning": load_conditioning,
}
NODE_DISPLAY_NAME_MAPPINGS = {
"CFZ_save_conditioning": "CFZ Save Conditioning",
"CFZ_load_conditioning": "CFZ Load Conditioning",
}