EditorMotionScheduler.cs 373 B

12345678910111213
  1. namespace LitMotion.Editor
  2. {
  3. /// <summary>
  4. /// Schedulers available in Editor.
  5. /// </summary>
  6. public static class EditorMotionScheduler
  7. {
  8. /// <summary>
  9. /// Scheduler that updates motion at EditorApplication.update.
  10. /// </summary>
  11. public static readonly IMotionScheduler Update = new EditorUpdateMotionScheduler();
  12. }
  13. }