BabylonIAnimatable.cs 325 B

1234567891011121314
  1. namespace BabylonExport.Entities
  2. {
  3. public interface BabylonIAnimatable
  4. {
  5. BabylonAnimation[] animations { get; set; }
  6. bool autoAnimate { get; set; }
  7. int autoAnimateFrom { get; set; }
  8. int autoAnimateTo { get; set; }
  9. bool autoAnimateLoop { get; set; }
  10. }
  11. }