-
Posts
2237 -
Joined
-
Last visited
-
Days Won
113
Content Type
Profiles
Forums
Events
Plants Library
Everything posted by Eduard
-
Hello, Ok, I sent you an educational license offer. Thanks!
-
How to fill the teapot with another 50% of the blank branches?
Eduard replied to 小饰X's topic in For general questions
Hello 小饰X, You can use this solution for your task: I didn't use a Switch node between the 2 Distributors nodes because the Random node won't be calculated properly there. Instead, it will always return one value, since the creation of distribution sequences is performed before the generation of any pathlines, so we can't get the chaos we need. If you need to get a distribution of 20/80%, then you can create a scheme like this: (This is another example with different objects) Thanks! -
Tree export to Corona proxy mesh broken
Eduard replied to BoscoCKG's topic in For technical questions
Hi BoscoCKG, Can you please send me this tree file? I'll see how to fix this. Thanks! -
Hello Timur, Ok, I just sent you the educational offer. Thanks!
-
Hi Karen, Try to set the settings as in my screenshot: You can also merge similar nodes. See screenshot above. Thanks!
-
I can`t find “Deactivate.exe”,I need help!
Eduard replied to River's topic in For technical questions
Hello River, Most likely Windows Defender or your antivirus has deleted this file. Try downloading it from this link: Deactivate.exe Thanks! -
Hi Karen, Try changing this value from 0.0 to 1.0. Thanks!
-
Hi wallworm, We've already released a new version and you can download it from the User panel. Thanks!
-
Hi Nenad, Trees from Maxtree are very complex, and when you activate leaves, data structure chains can be broken. You need to make sure that the leaves are created after these branches. This can be regarded as a bug, but we need to check your tree. Can you send it to me? Thanks!
-
Hi wallworm, We've added the following maxscript methods: <growfx2>.CreateHierarchyMeshes <is_group_by_pathcolor> Returns an array of Editable poly nodes of the elements in the hierarchy. is_group_by_pathcolor : boolean - when true, the algorithm will group adjacent branches if they have the same path color. <growfx2>.CreateHierarchySplines <is_group_by_pathcolor> Returns an array of Editable spline nodes of the elements in the hierarchy. is_group_by_pathcolor : boolean - when true, the algorithm will group adjacent branches if they have the same path color. I'm already planning to release this update as a new version 2.0.1. Thanks!
-
Hello cippall, Ok, we have already added some methods and properties to manage nodes. You can see the new description here: https://exlevel.com/growfx2-manual/MAXScript_new.html If you want, I can send you an update so you can try it. Thanks!
-
No problem, you can use this script: gfx = $ for i = 1 to 10 do ( gfxnew = copy gfx gfxnew.NewSeed() gfxnew.update() ) Thanks!
-
-
Ok, I sent you these updates. Thanks!
-
Hello Usman, Please change "10" in this line: for i = 1 to 10 do ( Thanks!
-
Although it works in version 1.9.9 SP10 as well. Thanks!
-
Hello Usman, Are you sure you're using GrowFX 2.0 version? I just tested this script before posting it here. Thanks!
-
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!
-
Hello Yes, these methods don't work in version 2.0, because component indexes don't exist. Instead, we plan to add new methods that will work with nodes. Just in version 2.0 there are no components like in version 1.9.9, there is a single array of nodes. Thanks!