Hi all, I am working on a script and performing loop cuts. After some tinkering, I managed to get things working and established the minimum call needed to perform the cuts.
I have this api call which works:
bpy.ops.mesh.loopcut_slide(MESH_OT_loopcut={"number_cuts":8,
"falloff":'INVERSE_SQUARE',
"object_index":0,
"edge_index":edge.index,
},
)
My question is, does anyone know if this parameter MESH_OT_loopcut is documented anywhere. I found that if I do not provide "object_index:0" nothing happens but can't find an explanation of what all the properties are. 0 might have some significance and magically works with my mesh but want to understand what this actually does.