Dynamic override acceleration vector
Hi,
How can I change the acceleration vector in runtime?
For example, I have a wind vector Vector3D(100, 0, 100), and in runtime it can be updated, so,
how I can apply changes of wind to particle effect?
Is there a way to do this?
You must Sign up as a member of Effecthub to view the content.
Sergey Smirnov
2014-03-21
A PHP Error was encountered
Severity: Notice
Message: Undefined index: HTTP_ACCEPT_LANGUAGE
Filename: helpers/time_helper.php
Line Number: 22
2280 views 2 comments
You must Sign up as a member of Effecthub to join the conversation.
A PHP Error was encountered
Severity: Notice
Message: Undefined index: HTTP_ACCEPT_LANGUAGE
Filename: helpers/time_helper.php
Line Number: 22
It's a state-less particle system rather than state-accumulated system. If you change the parameter on the fly, you will see some wired behavior.
A PHP Error was encountered
Severity: Notice
Message: Undefined index: HTTP_ACCEPT_LANGUAGE
Filename: helpers/time_helper.php
Line Number: 22
Hello I think it's not possible in this particle system. This particle system calculate the particle position according to some time-related formula. For example, acceleration: s=0.5*a*t*t; Supposing the current time "t=1", you change acceleration "a" from 1 to 10. And then "s" will leap a long distance from 0.5 to 5.