Make a dedicated folder about the interface

This commit is contained in:
2024-05-11 02:34:13 +02:00
parent 57379a0ff6
commit 1f7d5b40e8
5 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
import bpy import bpy
from .ui import GRAOU_PT_panel from .ui.export import GRAOU_PT_panel
from .operators.outline import ConfigBlendScene from .operators.outline import ConfigBlendScene
from .operators.exports import ExportForFange from .operators.exports import ExportForFange
from .operators.misc import MakeBasicCollision from .operators.misc import MakeBasicCollision
+1 -1
View File
@@ -48,7 +48,7 @@ class ExportForFange(bpy.types.Operator):
abs_export = self.category.joinpath(self.asset, "Meshes") abs_export = self.category.joinpath(self.asset, "Meshes")
if not abs_export.exists(): if not abs_export.exists():
abs_export.mkdir() abs_export.mkdir(parents=True)
# TODO Use a preset system # TODO Use a preset system
bpy.ops.export_scene.fbx(filepath=abs_export.joinpath(f"SM_{coll.name}.fbx").as_posix(), bpy.ops.export_scene.fbx(filepath=abs_export.joinpath(f"SM_{coll.name}.fbx").as_posix(),
View File