We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 602f380 commit 6c12df3Copy full SHA for 6c12df3
utils/converters/fbx/convert_to_threejs.py
@@ -385,7 +385,7 @@ def generate_material_object(material):
385
}
386
387
else:
388
- print "Unknown type of Material", getMaterialName(material)
+ print ("Unknown type of Material"), getMaterialName(material)
389
390
# default to Lambert Material if the current Material type cannot be handeled
391
if not material_type:
@@ -2063,7 +2063,7 @@ def copy_textures(textures):
2063
shutil.copyfile(url, saveFilename)
2064
texture_dict[url] = True
2065
except IOError as e:
2066
- print "I/O error({0}): {1} {2}".format(e.errno, e.strerror, url)
+ print ("I/O error({0}): {1} {2}").format(e.errno, e.strerror, url)
2067
2068
def findFilesWithExt(directory, ext, include_path = True):
2069
ext = ext.lower()
0 commit comments