1234567891011121314151617181920212223242526272829303132333435 |
-
- namespace FairyGUI
- {
-
-
-
- public interface IAnimationGear
- {
-
-
-
- bool playing { get; set; }
-
-
-
- int frame { get; set; }
-
-
-
- float timeScale { get; set; }
-
-
-
- bool ignoreEngineTimeScale { get; set; }
-
-
-
-
- void Advance(float time);
- }
- }
|