You can install this library by the steps below.
- Select Window > Package Manager from the menu bar.
- Click the + button in the upper left corner of the window and select Add package from git URL....
- Enter the following URL in the input field and click Add.
https://github.com/sgaumin/AnimExpress.git
After importing texture in the project, we can use utility method to generate animation assets.
animator = GetComponent<AnimatorExpress>();
animator.Play("AnimationName");animator = GetComponent<AnimatorExpress>();
animator.Stop();private AnimatorExpress animator;
private void Awake()
{
animator = GetComponent<AnimatorExpress>();
animator.AddListener("FrameName_0", CallBack1);
animator.AddListener("FrameName_1", CallBack2);
}
private void OnDestroy()
{
animator.RemoveListener("FrameName_0", CallBack1);
animator.RemoveListener("FrameName_1", CallBack2);
}If you ever come across any issues please feel free to report to the Issues page on this repository. All feedback is appreciated, and will be taken on board for any future updates.

