POP instanced geo jittering
1969 1 0- houdini007
- Member
- 11 posts
- Joined: March 2007
- Offline
- Enivob
- Member
- 2625 posts
- Joined: June 2008
- Offline
Your copies are jumping around because your point numbers are not constant. There are two culprits in play. One is you are using the default scattering of the PopSource node. This means the frame number changes the seed on the scatter inside the node. A better approach is to pre-scatter points with a static seed before you enter the popnet and reference All Points as the pop source. This way you control where the points are generated from. The other culprit is Reaping. When a particle dies, it's id number is reused and thus generates a new object in a new location causing a jump to occur.
If you pre-scatter and disable reaping you get less jitter out of the particle system. However, with reaping off you must manually remove particle from the system, id needed. For instance…
Will remove particles that fall below the world ground plane.
If you pre-scatter and disable reaping you get less jitter out of the particle system. However, with reaping off you must manually remove particle from the system, id needed. For instance…
if(@P.y<0) removpoint(0,@ptnum);
Edited by Enivob - Nov. 6, 2018 10:11:28
Using Houdini Indie 20.0
Windows 11 64GB Ryzen 16 core.
nVidia 3050RTX 8BG RAM.
Windows 11 64GB Ryzen 16 core.
nVidia 3050RTX 8BG RAM.
-
- Quick Links