I currently have a series of Particles moving along a spline. Since these particles do not have velocity when set this way I need a manual method of calculating Velocity for other uses when building the system.
In theory, I need to Set a Particle’s position lower in the stack, and then higher in the stack on the next frame, I need this variable to compare with the new current position, getting the difference.
However, I am unsure what method of setting parameters I need to do and what type of parameter it needs to be, as there are lots of parameter types and I’m not sure which one is best for my needs!
That said there may be other methods too.
Hi @AliceHalley
Let’s see…
Track Particle Position:
Keep both the current and last positions within a Vector parameter.
Update Positions:
Each frame, set the last position equal to the current position, then set the current position according to where the particle lies along the spline.
Calculate Velocity:
Decrease the last position from the current position and divide by the delta time to get velocity:
Velocity =
Current Position−Previous Position
_____________________________________
Δt
Use in Niagara:
Implement this reasoning in Niagara with User Parameters for storing positions and calculating velocity per frame.
I completely get the high level logic and flow, but what specific means do I need to accomplish this?
Do I use Scratch? Set Variable? What namespace should the variable have?
Since I am quite new to Niagara, I still haven’t gotten to grips with the low level usage of all its systems.