MotionEvaluationContext.cs 275 B

12345678910111213
  1. namespace LitMotion
  2. {
  3. /// <summary>
  4. /// Provides basic information for evaluating motion.
  5. /// </summary>
  6. public struct MotionEvaluationContext
  7. {
  8. /// <summary>
  9. /// Progress (0-1)
  10. /// </summary>
  11. public float Progress;
  12. }
  13. }