6 lines
No EOL
199 B
Python
6 lines
No EOL
199 B
Python
import bpy
|
|
|
|
# Change the instanced collection of a collection instance
|
|
obj = bpy.context.active_object
|
|
new_collection = bpy.data.collections['Full Courtyard']
|
|
obj.instance_collection = new_collection |