import bpy
f = open("C:/Users/xxx/Desktop/CODING.txt", 'w')
for i in bpy.context.selected_objects:
result = print(i.name.split(".")[1])
result = str(result)
f.write(result)
f.close()
我在 Blender 中选择了 5 个对象并运行了脚本。
对象的名称是 cube.001 ~ cube.005
我想要的是在记事本中写 001 到 005。
但是,记事本上写了“无”(5次)
谢谢你。