Remove check for 'assimp' in name of directories to be searched for library in python port
parent
d91d10f694
commit
ce5b78f6c0
|
@ -51,11 +51,8 @@ if os.name=='posix':
|
||||||
elif os.name=='nt':
|
elif os.name=='nt':
|
||||||
ext_whitelist.append('.dll')
|
ext_whitelist.append('.dll')
|
||||||
path_dirs = os.environ['PATH'].split(';')
|
path_dirs = os.environ['PATH'].split(';')
|
||||||
for dir_candidate in path_dirs:
|
additional_dirs.extend(path_dirs)
|
||||||
if 'assimp' in dir_candidate.lower():
|
|
||||||
additional_dirs.append(dir_candidate)
|
|
||||||
|
|
||||||
#print(additional_dirs)
|
|
||||||
def vec2tuple(x):
|
def vec2tuple(x):
|
||||||
""" Converts a VECTOR3D to a Tuple """
|
""" Converts a VECTOR3D to a Tuple """
|
||||||
return (x.x, x.y, x.z)
|
return (x.x, x.y, x.z)
|
||||||
|
|
Loading…
Reference in New Issue