Guest User

Untitled

a guest
Mar 21st, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. import bpy
  2.  
  3. context = bpy.context
  4. scene = context.scene
  5. ob = context.object
  6. # copy object
  7. obcopy = ob.copy()
  8. # copy particle settings
  9. ps = ob.particle_systems[0].settings.copy()
  10. ps.frame_start = 22
  11. obcopy.particle_systems[0].settings = ps
  12. scene.objects.link(obcopy)
Add Comment
Please, Sign In to add comment