Henry Neilson

Results 4 comments of Henry Neilson

It does look like changing to 1 works. Setting to anything other than 1 doesn't work however?

Hi @bcongdon I'm still really keen to have this as is @QuteBits it seems. Do you think you'd be able to find the time over the next few weeks at...

Great thank you! If you change 6 to 1 on `bpy.context.object.modifiers["Remesh"].octree_depth = 6` Then the output mesh will have a significantly lower number of vertices than the input. If it...

output should be: `>>>482` `>>>8` if it fails I imagine: `>>>482` `>>>482` ```import bpy bpy.ops.object.select_all(action='SELECT') bpy.ops.object.delete() bpy.ops.mesh.primitive_uv_sphere_add() print(len(bpy.context.object.data.vertices)) bpy.ops.object.modifier_add(type='REMESH') bpy.context.object.modifiers["Remesh"].octree_depth = 1 bpy.context.object.modifiers["Remesh"].scale = 0.9 bpy.context.object.modifiers["Remesh"].threshold = 1 bpy.context.object.modifiers["Remesh"].sharpness =...