M07 | Next Steps | Procedural Animation | Particles (BUG)

   1926   0   0
User Avatar
Member
24 posts
Joined: Dec. 2013
Offline
Topic is quasi in nature: Am I stupid, or did I found a bug.

Link to tutorial: https://vimeo.com/81427434 [vimeo.com]

——————
about 38:20, in curve follow.

right now there is: amp *= @oncurve*3

I THINK that it should be more like:
amp += @oncurve*3;
amp *= fit(@oncurve, 0, 1, 1, 0);

If I understand correctly “ *= ” means multiply amp with whatever is after =. If amp is 0 then we are: 0*(@!oncurve*3)=0.
—————-
there is another bug in explanation about : pop_replicate_setup.hip ( 55:42 )

pop wind node -> VEX: amp *= fit(@P.y, 5, 5.5, 0, 1);

This code is doing nothing. Result is the same, as it would Amp brought down to 0. P.y is not reaching 5.

bypass popforce1, popforce2, popdrag1, set airresist in popwind1 to 0.1.

add popcolor after popwind with VEX: color = set(fit(@P.y, 5, 5.5, 0, 1), 1 , 0);

this will color yellow particles that reach condition in “fit(@P.y, 5, 5.5, 0, 1)”
—————–


If anyone could confirm or deny my point of view, I would be greatful.

Attachments:
pop_replicate_setup_bug.hipnc (308.6 KB)

  • Quick Links