diff --git a/tools/io_qfmap/entityclass.py b/tools/io_qfmap/entityclass.py index 0d9ccd707..132eb5c33 100644 --- a/tools/io_qfmap/entityclass.py +++ b/tools/io_qfmap/entityclass.py @@ -114,7 +114,6 @@ class EntityClassDict: ec = EntityClass.from_quaked(text[start:pos], fname, start_line) self.entity_classes[ec.name] = ec - print(ec.name) else: if text[pos] == "\n": line += 1 diff --git a/tools/io_qfmap/import_map.py b/tools/io_qfmap/import_map.py index e382d8d64..de07be267 100644 --- a/tools/io_qfmap/import_map.py +++ b/tools/io_qfmap/import_map.py @@ -66,7 +66,6 @@ def entity_box(entityclass): def load_image(tx): if tx.name in bpy.data.images: return bpy.data.images[tx.name] - print(tx.name) img = bpy.data.images.new(tx.name, tx.miptex.width, tx.miptex.height) p = [0.0] * tx.miptex.width * tx.miptex.height * 4 d = tx.miptex.texels[0] @@ -182,7 +181,6 @@ def process_entity(ent, wads): uv = uvs[i] tx = texdefs[i] texpoly.image = tx.image - print(poly.material_index, tx.matindex) poly.material_index = tx.matindex for j, k in enumerate(poly.loop_indices): uvloop.data[k].uv = uv[j]