BabylonIAnimatable.cs 417 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace BabylonExport.Entities
  6. {
  7. public interface BabylonIAnimatable
  8. {
  9. BabylonAnimation[] animations { get; set; }
  10. bool autoAnimate { get; set; }
  11. int autoAnimateFrom { get; set; }
  12. int autoAnimateTo { get; set; }
  13. bool autoAnimateLoop { get; set; }
  14. }
  15. }