Updated console output

This commit is contained in:
Killergnom
2024-03-24 20:46:42 +01:00
parent c124266cf4
commit dd3b93c8bb
17 changed files with 38950 additions and 1 deletions

View File

@@ -29,7 +29,7 @@ for i in range(1,len(inputTexs),1):
resizedTex = currentTex.resize((2048,2048),Image.LANCZOS)
resizedTex.save(str(export_path) + "\\" + os.path.basename(inputTexs[i]), optimize=True, quality=95)
print (os.path.basename(inputTexs[i]) + "successfully converted " + "(" + str(i) + "/" + str(len(inputTexs)-1) + ")")
print (os.path.basename(inputTexs[i]) + " successfully converted " + "(" + str(i) + "/" + str(len(inputTexs)-1) + ")")
print("Textures successfully resized!")
time.sleep(5)