You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

35 lines
643 B

namespace FairyGUI
{
/// <summary>
///
/// </summary>
public interface IAnimationGear
{
/// <summary>
///
/// </summary>
bool playing { get; set; }
/// <summary>
///
/// </summary>
int frame { get; set; }
/// <summary>
///
/// </summary>
float timeScale { get; set; }
/// <summary>
///
/// </summary>
bool ignoreEngineTimeScale { get; set; }
/// <summary>
///
/// </summary>
/// <param name="time"></param>
void Advance(float time);
}
}