Skip to content

Commit

Permalink
squash to a single commit
Browse files Browse the repository at this point in the history
  • Loading branch information
buildxyz-git committed Jul 30, 2024
1 parent 140b262 commit ca8b065
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@
import bpy

def find_draco_dll_in_module(library_name: str) -> Path:
"""
Get the extern Draco library if it exist in the default location used when
build PYthon as a module
:return: DLL/shared library path.
"""
bpy_path = Path(bpy.__file__).resolve()
bpy_dir = bpy_path.parents[4]
lib_dir = bpy_dir / 'lib'
Expand Down

0 comments on commit ca8b065

Please sign in to comment.