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 2ca80e7 commit 350c886Copy full SHA for 350c886
src/io_openctm.py
@@ -81,7 +81,6 @@ def execute(self, context):
81
for map_index in range(8):
82
uv_coords = ctmGetFloatArray(ctm_context, (0x0700 + map_index))
83
if uv_coords:
84
- print(f"UV{map_index}")
85
uv_name = ctmGetUVMapString(ctm_context, (0x0700 + map_index), CTM_NAME)
86
uv_coords = np.fromiter(uv_coords, dtype=float, count=vertex_count * 2).reshape((-1, 2))
87
if uv_name:
0 commit comments