Merge pull request #2248 from romulox-x/colladaImagePath

fixed image path problem in bettercollada
This commit is contained in:
Juan Linietsky 2015-07-27 22:21:53 -03:00
commit ed85339bcb

View file

@ -190,7 +190,7 @@ class DaeExporter:
if (not os.path.isfile(dstfile)):
shutil.copy(imgpath,dstfile)
imgpath="images/"+os.path.basename(imgpath)
imgpath="images/"+os.path.basename(imgpath)
else:
### if file is not found save it as png file in the destination folder
img_tmp_path = image.filepath
@ -204,7 +204,7 @@ class DaeExporter:
if (not os.path.isfile(dstfile)):
image.save()
imgpath="images/"+os.path.basename(image.filepath)
imgpath="images/"+os.path.basename(image.filepath)
image.filepath = img_tmp_path
else: