ICubismUpdatable.cs 552 B

1234567891011121314151617181920
  1. /**
  2. * Copyright(c) Live2D Inc. All rights reserved.
  3. *
  4. * Use of this source code is governed by the Live2D Open Software license
  5. * that can be found at https://www.live2d.com/eula/live2d-open-software-license-agreement_en.html.
  6. */
  7. namespace Live2D.Cubism.Framework
  8. {
  9. /// <summary>
  10. /// Cubism update interface.
  11. /// </summary>
  12. public interface ICubismUpdatable
  13. {
  14. int ExecutionOrder { get; }
  15. bool NeedsUpdateOnEditing { get; }
  16. bool HasUpdateController { get; set; }
  17. void OnLateUpdate();
  18. }
  19. }