How do i add objects from another scene with python?

Help please :pleading_face: . The “addScene” doesn’t work anymore therefore I can’t use “getSceneList()”

You can use bpy to get access to a different scene, but I’m not sure if that’s what you need.
You can get access to a scene like this:

scene = bpy.data.scenes[“Scene”]

Get access to an object like this:

monkey = scene.objects[“Suzanne”]

And see what you can do with that object like this:

print(dir(monkey))

1 Like