diff --git a/oscurart_mesh_cache_tools.py b/oscurart_mesh_cache_tools.py index bcbe2baf5fc718797e0642535f0cbc388027d4fd..f00a37b92a337a7455037c61e1c2578bc47dc071 100644 --- a/oscurart_mesh_cache_tools.py +++ b/oscurart_mesh_cache_tools.py @@ -87,13 +87,7 @@ def OscFuncExportPc2(self): me.calc_normals() #creo archivo for vert in me.vertices[:]: - i = ( - float(vert.co[0]), - float(vert.co[1]), - float(vert.co[2]) - ) - file.write(struct.pack("<3f", *i)) - + file.write(struct.pack("<3f", *vert.co)) #dreno mesh bpy.data.meshes.remove(me)