简体   繁体   中英

How can a blender object inside a collection be turned active using python scripting?

I want to choose an object located in a collection

obviously the following command doesn't work:

    bpy.data.objects[plankname].select_set(True)

This is since the object is not part of the main scene

bpy.data.collections["CollectionName"].objects["ObjectName"].select_set(True)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM