--
view archives: http://groups.google.com/group/python_inside_maya
change your subscription settings: http://groups.google.com/group/python_inside_maya/subscribe
pars_shape = pm.PyNode( 'particleShape1' )
for frame in range( start, end+1 ):
pm.currentTime( frame )
positions = []
for pt in pars_shape.points:
positions.append(
pt.worldPosition )
f = open( '/tmp/parPositions.%04d.txt' % frame, 'w' )
f.writelines( positions )
f.close()
--
view archives: http://groups.google.com/group/python_inside_maya
change your subscription settings: http://groups.google.com/group/python_inside_maya/subscribe
myselPart = cmds.ls(sl = True)
print myselPart
That's a start
Martin
--
view archives: http://groups.google.com/group/python_inside_maya
change your subscription settings: http://groups.google.com/group/python_inside_maya/subscribe