TurtsMacGurts Posted January 5, 2021 Report Share Posted January 5, 2021 Hi there, I'm trying to find a way to convert my path meshes to separate meshes. When I convert to Mesh/Poly, it keeps them all together. It would also be very ideal if the mesh transforms were all properly placed at the base of the mesh (similar to the Convert To Separate Splines) function. Anyone know of a way to do this? Thanks in advance! John Quote Link to comment Share on other sites More sharing options...
Eduard Posted January 5, 2021 Report Share Posted January 5, 2021 Hi John, You can select your GrowFX object and run this MaxScript: gfx = $ for i = 1 to gfx.getNumSequences() do ( for j = 1 to (gfx.getNumLines i) do ( gfx.GenerateOneMesh i j snapshot gfx ) ) gfx.ResetOneMesh() Then delete or hide your selected original object. Thanks! Quote Link to comment Share on other sites More sharing options...
TurtsMacGurts Posted January 18, 2021 Author Report Share Posted January 18, 2021 Hi @Eduard -- this is perfect. Thank you! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.