Make a very basic plugin setup

This commit is contained in:
2024-05-04 17:33:16 +02:00
parent aec4ee2a99
commit e9858cb55c
5 changed files with 143 additions and 103 deletions
+6
View File
@@ -1,5 +1,8 @@
import bpy
from .ui import GRAOU_PT_panel
from .ops import ExportForFange
bl_info = {
'name': 'Fange Pipeline',
'description': 'Pipeline about the game project "Fange"',
@@ -14,6 +17,9 @@ bl_info = {
modules_class = [
# Main Property
ExportForFange,
# UI
GRAOU_PT_panel
]