Skip to content

Commit

Permalink
Add print statement for debugging J3DUltra path
Browse files Browse the repository at this point in the history
  • Loading branch information
LagoLunatic committed Mar 19, 2024
1 parent 52c2f49 commit fa44e5a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions gcft_ui/j3d_viewer.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@

import sys
import os
import re
from io import BytesIO
Expand Down Expand Up @@ -26,6 +27,8 @@
J3DULTRA_INSTALLED = True
except ImportError as e:
print(f"Failed to import J3DUltra with error: {e}")
print("Current Python module search paths are:")
print(sys.path)
J3DULTRA_INSTALLED = False

REQUIRED_OPENGL_VERSION = (4, 5)
Expand Down

0 comments on commit fa44e5a

Please sign in to comment.