Forum: Poser 11 / Poser Pro 11 OFFICIAL Technical


Subject: Script to -Copy Joints From-

bwldrd opened this issue on Apr 24, 2020 ยท 4 posts


structure posted Fri, 24 April 2020 at 10:17 PM Forum Coordinator

import poser

scene = poser.Scene()
donor = scene.CurrentFigure()
for figure in scene.Figures():
    if not figure == donor:
        scene.SelectFigure( scene.Figure( figure.Name() ) )
        poser.ProcessCommand(1718)

This is not perfect, it will ask you for each figure in the scene which figure you want to copy from,

but it may speed up the process somewhat

it will not copy to the figure you have selected when you start the script

Locked Out