12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace BabylonExport.Entities
- {
- public interface BabylonIAnimatable
- {
- BabylonAnimation[] animations { get; set; }
- bool autoAnimate { get; set; }
- int autoAnimateFrom { get; set; }
- int autoAnimateTo { get; set; }
- bool autoAnimateLoop { get; set; }
- }
- }
|