Awesome
EasingCore
Core Easing Implementation for Unity.
API
public static EasingFunction Get(Ease type)
Usage
var easeOutCubic = Easing.Get(Ease.OutCubic);
var p = easeOutCubic(0.5f);
Installation
OpenUPM
Add a package from OpenUPM registry to your project.
openupm add jp.setchi.easingcore
Unity Package Manager
Add a reference to the repository in the Packages\manifest.json
file in your project directory:
{
"dependencies": {
"jp.setchi.easingcore": "https://github.com/setchi/EasingCore.git#upm"
}
}
Manual
Clone or download this repository into the Assets directory of your project.