Skip to content

Commit

Permalink
Fix Blender 3 check
Browse files Browse the repository at this point in the history
  • Loading branch information
huntfx committed May 5, 2022
1 parent 22c5385 commit 679c434
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ if __name__ == '__main__':
- Substance Designer (tested on 2019.3) - standard, docked (unable to save/load position)
- 3D Studio Max (2018+, tested on 2020) - standard
- Houdini (tested on 16) - standard
- Blender (tested on 2.80) - standard, callbacks
- Blender (tested on 2.8 - 3.1) - standard, callbacks
- Unreal (4.19+, tested on 4.23) - standard
- Fusion (tested on 9) - standard
- Standalone (Qt4, Qt5, tested on 2.7, 3.4+) - standard
Expand Down
2 changes: 1 addition & 1 deletion vfxwindow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class NotImplementedApplicationError(ImportError, NotImplementedError):
elif importable('hou') and 'houdini' in sys.executable:
from .houdini import HoudiniWindow as VFXWindow

elif importable('bpy') and 'blender.exe' in sys.executable:
elif importable('bpy') and 'Blender Foundation' in sys.executable:
from .blender import BlenderWindow as VFXWindow

elif importable('unreal') and 'UE4Editor.exe' in sys.executable:
Expand Down

0 comments on commit 679c434

Please sign in to comment.