namespace Zinnia.Tracking.Velocity { using UnityEngine; /// /// Derived from to take average samples of a and and use this cached data to estimate velocity and angular velocity. /// /// /// This estimator uses LateUpdate(). /// public class AverageVelocityEstimator : AverageVelocityEstimatorProcess { protected virtual void LateUpdate() { Process(); } } }