Usman Posted September 20, 2022 Report Share Posted September 20, 2022 I saw a video while back and cant find it again, but in that video a process was shown where you can animate growfx seed to frames and then export them to mesh by using Tools>Snapshot and using a range of how many different versions you want of a plant. But I cant seem to animate the seed now or I am not doing it properly. Can you please tell me if there is a way to do it. Quote Link to comment Share on other sites More sharing options...
Eduard Posted September 22, 2022 Report Share Posted September 22, 2022 Hello Usman, Yes, it seems possible to animate the Seed value, but it doesn't update during the animation, and it doesn't update the object. We'll fix this in the next upgrade. Thanks for your bug report! Now you can try using this script to create 10 models (for example): gfx = $ iseed = gfx.Seed for i = 1 to 10 do ( gfx.NewSeed() gfx.update() snapshot gfx ) gfx.Seed = iseed gfx.update() Thanks! Quote Link to comment Share on other sites More sharing options...
Usman Posted September 27, 2022 Author Report Share Posted September 27, 2022 I tried using the script on the selected growfx and it doesnt work and comes back with an error. " -- Unknown property: "update" in undefined -- MAXScript callstack: -- thread data: threadID:33256 -- ------------------------------------------------------ -- [stack level: 0] -- In top-level " Quote Link to comment Share on other sites More sharing options...
Eduard Posted September 27, 2022 Report Share Posted September 27, 2022 Hello Usman, Are you sure you're using GrowFX 2.0 version? I just tested this script before posting it here. Thanks! Quote Link to comment Share on other sites More sharing options...
Eduard Posted September 27, 2022 Report Share Posted September 27, 2022 2 hours ago, Eduard said: Are you sure you're using GrowFX 2.0 version? Although it works in version 1.9.9 SP10 as well. Thanks! Quote Link to comment Share on other sites More sharing options...
Usman Posted September 30, 2022 Author Report Share Posted September 30, 2022 On 9/28/2022 at 3:13 AM, Eduard said: Hello Usman, Are you sure you're using GrowFX 2.0 version? I just tested this script before posting it here. Thanks! sorry my bad, I was doing something wrong. Can you please also do one where it just makes a number of copies of same growfx but keep them in growfx and convert them to mesh. Quote Link to comment Share on other sites More sharing options...
Eduard Posted September 30, 2022 Report Share Posted September 30, 2022 6 hours ago, Usman said: Can you please also do one where it just makes a number of copies of same growfx but keep them in growfx and convert them to mesh. Hello Usman, Please change "10" in this line: for i = 1 to 10 do ( Thanks! Quote Link to comment Share on other sites More sharing options...
Usman Posted October 2, 2022 Author Report Share Posted October 2, 2022 Hey, sorry I think I didnt word it properly. I basically want to make lets say 10 copies of growfx with different seeds and not convert to mesh. Quote Link to comment Share on other sites More sharing options...
Eduard Posted October 2, 2022 Report Share Posted October 2, 2022 2 hours ago, Usman said: Hey, sorry I think I didnt word it properly. I basically want to make lets say 10 copies of growfx with different seeds and not convert to mesh. No problem, you can use this script: gfx = $ for i = 1 to 10 do ( gfxnew = copy gfx gfxnew.NewSeed() gfxnew.update() ) Thanks! Quote Link to comment Share on other sites More sharing options...
Usman Posted October 4, 2022 Author Report Share Posted October 4, 2022 Awesome, thankyou so much ! 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.