Fix naming issue with Blender on macos

This commit is contained in:
Brett Williams
2023-10-21 20:25:02 -05:00
parent 2be2eee157
commit 858f931f9b

View File

@@ -13,7 +13,7 @@ class Blender(BaseRenderEngine):
install_paths = ['/Applications/Blender.app/Contents/MacOS/Blender'] install_paths = ['/Applications/Blender.app/Contents/MacOS/Blender']
supported_extensions = ['.blend'] supported_extensions = ['.blend']
binary_names = {'linux': 'blender', 'windows': 'blender.exe', 'macos': 'Blender.app'} binary_names = {'linux': 'blender', 'windows': 'blender.exe', 'macos': 'Blender'}
def version(self): def version(self):
version = None version = None