From ca7299e504533a74492f7065c22108f0271855ca Mon Sep 17 00:00:00 2001 From: Manish Date: Mon, 6 May 2019 10:54:38 +0200 Subject: [PATCH] Removing prints --- Util/import_fbx.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/Util/import_fbx.py b/Util/import_fbx.py index 5ac39aaf6..6e39406db 100755 --- a/Util/import_fbx.py +++ b/Util/import_fbx.py @@ -36,9 +36,7 @@ def import_all_fbx_in_folder(fbx_folder, folder_list): fbx_place = os.path.join(dirname, "..", fbx_folder) for file in os.listdir(fbx_place): if file.endswith(".PropRegistry.json"): - print("MANISHHHH") registry_name = file.replace(".PropRegistry.json", "") - print (registry_name) with open(os.path.join(dirname, "..", fbx_folder, file)) as json_file: data = json.load(json_file) # This will take all the fbx registerd in the provided json files @@ -51,7 +49,6 @@ def import_all_fbx_in_folder(fbx_folder, folder_list): if folder not in final_list: final_list += folder + "+" final_list = final_list[:-1] - print(final_list) #Destination map (the one that will be cooked) dest_map_path = "/Game/Carla/Maps/TestMaps" dest_map_name = "TEMPMAP"