Hi guys, I have made a script that is supposed to find the difference between the position of every vertex in a first mesh and a second mesh. The goal is to automatically select for morpher the vertex that require vertex color to white and with a Ctrl+i the black vertex color. Currently the script work with simple mesh…
The problem is that you compare float values directly. Use this instead: if distance cV1 cV2 > 0.001 do appendIfUnique aDV i And read this: Comparing float values, by Swordslayer. And make all variables from the first 11 rows local.