Add basic plugin preference

This commit is contained in:
2024-05-07 00:03:22 +02:00
parent 85f5f3c931
commit f9628eda0f
3 changed files with 62 additions and 3 deletions
+4 -1
View File
@@ -2,6 +2,7 @@ import bpy
from .ui import GRAOU_PT_panel
from .ops import ExportForFange
from .preference import GRAOU_AddonPreference
bl_info = {
'name': 'Fange Pipeline',
@@ -19,7 +20,9 @@ modules_class = [
# Main Property
ExportForFange,
# UI
GRAOU_PT_panel
GRAOU_PT_panel,
# Preference
GRAOU_AddonPreference
]