I ended up solving what I needed in this case by changing it from two arrays to grabbing my previous selection and using the unwrap2 interface to move the entire selection by an offset which was set as a global variable.global movePos<br>fn F_moveUV movePos = (<br> if selection.count >= 1 do<br> (<br> SEL = selection as…
Hey currently I'm trying to sort through this piece of code that I've edited from one of @Ojah 's old posts. fn F_moveUV movePos = ( if selection.count >= 1 do ( SEL = selection as array for i = 1 to SEL.count do ( print SEL[i] objMod = SEL[i].modifiers[#unwrap_uvw] objMod.unwrap2.faceToVertSelect() print objMod vArray =…
This should show you all the Unwrap2 commands: showinterface unwrap_uvw.unwrap2 When using a single unwrap mod on multiple objects you should use the ByNode commands available in the Unwrap6 interface. They are basically duplicates of the same commands with an extra parameter to specify the object to operate on.…