我面臨一個相當容易解決的問題,但我只是不知道該怎麼做。我希望攪拌器列出所有選作字符串的對象。例如。如果我運行:獲取選定對象的列表作爲字符串Blender python
selection_names = bpy.context.selected_objects
print (selection_names)
它給了我這一行:
[bpy.data.objects['Cube.003'], bpy.data.objects['Cube.002'], bpy.data.objects['Cube.001'], bpy.data.objects['Cube']]
但我想要的是selection_names
是打印出來的:
['Cube.001','Cube.002','Cube.003','Cube']
感謝大衛:) – 2015-05-11 01:48:33