I want to move my particles by a few given attributes. The particles should slow down to a stop as they reach the end of their lifetime
result = a_pos + a_direction * lifetime * mix(a_speed, a_speed_end, normalized_lifetime);
result.w = 1.0;
gl_Position = u_projection * u_model_view * result;
This doesn't work as I'd hoped it would because it doesn't consider previous movements, so when normalized_lifetime reaches 1, the particle is basically set to a_pos again since a_speed_end is 0. How do I go about this?
EDIT: More information:
a_pos = startposition
a_direction = normalized direction vector
lifetime = current lifetime of the particle
a_speed, a_speed_end = desired start/end speed
They should move on a straight line along the direction vector, no CPU updates
you want a equation like
-a_deceleration*t^2+a_initial*t+a_pos
a bit of physics:
initial speed is
a_speed
a_speed_end
isa_speed - a_deceleration*total_life
so-a_deceleration = (a_speed_end-a_speed)/total_life
so your equation becomes
edit: looking at the formulas in wikipedia there is an easier one