Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/setchi/easingcore
🐉 Core Easing Implementation for Unity.
https://github.com/setchi/easingcore
csharp easing easing-functions unity unity3d
Last synced: 16 days ago
JSON representation
🐉 Core Easing Implementation for Unity.
- Host: GitHub
- URL: https://github.com/setchi/easingcore
- Owner: setchi
- License: mit
- Created: 2019-04-07T06:56:57.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-01-11T06:43:09.000Z (almost 5 years ago)
- Last Synced: 2024-10-11T09:54:46.013Z (about 1 month ago)
- Topics: csharp, easing, easing-functions, unity, unity3d
- Language: C#
- Homepage:
- Size: 10.7 KB
- Stars: 75
- Watchers: 2
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# EasingCore [![license](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/setchi/Easings/blob/master/LICENSE) [![openupm](https://img.shields.io/npm/v/jp.setchi.easingcore?label=openupm®istry_uri=https://package.openupm.com)](https://openupm.com/packages/jp.setchi.easingcore/)
Core Easing Implementation for Unity.## API
```csharp
public static EasingFunction Get(Ease type)
```## Usage
```csharp
var easeOutCubic = Easing.Get(Ease.OutCubic);
var p = easeOutCubic(0.5f);
```## Installation
### OpenUPM
Add a package from [OpenUPM](https://openupm.com/) registry to your project.```
openupm add jp.setchi.easingcore
```### Unity Package Manager
Add a reference to the repository in the [`Packages\manifest.json`](https://docs.unity3d.com/Packages/[email protected]/manual/index.html#project-manifests) file in your project directory:```json
{
"dependencies": {
"jp.setchi.easingcore": "https://github.com/setchi/EasingCore.git#upm"
}
}
```### Manual
Clone or download this repository into the Assets directory of your project.## Author
[setchi](https://github.com/setchi)## License
[MIT](https://github.com/setchi/EasingCore/blob/master/LICENSE)