Visualizing a Trajectory

To get positions on the projectile path, and the shape just Google “projectile motion”. The equation is:
X = StartX + Velocity.X * Time
Y = StartY + Velocity.Y * Time
Z = StartZ + Velocity.Z * Time + (Gravity * (Time^2))/2
And to draw it use a particle system.

1 Like