I'm new to Blender.I code an python script to learn bridge edge loop but something strange happened.
I'm trying the following steps
- select a circle of vertices
- use bpy.ops.mesh.duplicate() to duplicate the selected vert and move the duplicate to another position
- use vert.select_set(True) to select the two circle
- use bpy.ops.mesh.bridge_edge_loops() to bridge
4th step warning that "Select at least two edge loops",but if i execute step4 for the second time or do any operation before step4 ,it works
I want to know why this result occurred
