Changes to engine file extensions structure

This commit is contained in:
Brett Williams
2024-08-03 20:21:26 -05:00
parent 7d633d97c2
commit d9201b5082
5 changed files with 23 additions and 17 deletions

View File

@@ -11,6 +11,7 @@ class Blender(BaseRenderEngine):
install_paths = ['/Applications/Blender.app/Contents/MacOS/Blender']
binary_names = {'linux': 'blender', 'windows': 'blender.exe', 'macos': 'Blender'}
file_extensions = ['blend']
@staticmethod
def downloader():
@@ -26,10 +27,6 @@ class Blender(BaseRenderEngine):
from src.engines.blender.blender_ui import BlenderUI
return BlenderUI.get_options(self)
@staticmethod
def supported_extensions():
return ['blend']
def version(self):
version = None
try: