Need to know some new changed Python API names

Hi. I’ve some problems on porting old 2.79 code lines to 3.0 APi. Here the list:

  • dupli_object;
  • dupli_list;
  • dupli_list_create;
  • psys.set_resolution.

dupli … is that something like Object.instance_type?

Further check: looks like ParticleSettings.dupli_object is now called ParticleSettings.instance_object.

1 Like

Check the release notes. There’s is no direct replacement, instancing must be handled differently:
https://wiki.blender.org/wiki/Reference/Release_Notes/2.80/Python_API/Scene_and_Object_API#Instancing

1 Like