Jump to content

Possible to extract a body mesh at 50% weight?


Recommended Posts

I've made a very inefficient script for 3ds max that maybe produces what you want.

 

Load both _0 and _1 bodies as usual. Select both meshes. First select the _0 mesh and then add the _1 mesh to the selection.

 

Run this script. The _1 mesh should shrink by 50%

(
	for i = 1 to selection[1].mesh.numverts do
	(
		vert1 = getVert selection[1].mesh i
		vert2 = getVert selection[2].mesh i
		vert3 = (vert1 + ((vert2 - vert1) * 50 / 100))
		meshop.setVert selection[2] i vert3
	)
)
Link to comment

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...