forked from carson-katri/dream-textures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
classes.py
31 lines (28 loc) · 1.12 KB
/
classes.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
from .operators.install_dependencies import InstallDependencies
from .operators.open_latest_version import OpenLatestVersion
from .operators.dream_texture import DreamTexture
from .operators.help_panel import HelpPanel
from .operators.view_history import RecallHistoryEntry, SCENE_UL_HistoryList, ViewHistory
from .operators.inpaint_area_brush import InpaintAreaStroke
from .property_groups.dream_prompt import DreamPrompt
from .preferences import OpenGitDownloads, OpenHuggingFace, OpenWeightsDirectory, OpenRustInstaller, ValidateInstallation, StableDiffusionPreferences
from .shader_menu import ShaderMenu
CLASSES = (
DreamTexture,
HelpPanel,
OpenLatestVersion,
ShaderMenu,
ViewHistory,
RecallHistoryEntry,
InpaintAreaStroke,
SCENE_UL_HistoryList,
)
PREFERENCE_CLASSES = (
DreamPrompt,
OpenGitDownloads,
InstallDependencies,
OpenHuggingFace,
OpenWeightsDirectory,
OpenRustInstaller,
ValidateInstallation,
StableDiffusionPreferences)