Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zigurous/unity-animation-library
⏳🐌 Assets and scripts for animating Unity objects.
https://github.com/zigurous/unity-animation-library
animation assets package unity
Last synced: about 2 months ago
JSON representation
⏳🐌 Assets and scripts for animating Unity objects.
- Host: GitHub
- URL: https://github.com/zigurous/unity-animation-library
- Owner: zigurous
- License: mit
- Created: 2021-02-12T03:00:27.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-08-14T01:38:49.000Z (4 months ago)
- Last Synced: 2024-08-14T05:00:47.258Z (4 months ago)
- Topics: animation, assets, package, unity
- Language: C#
- Homepage: https://docs.zigurous.com/com.zigurous.animation
- Size: 422 KB
- Stars: 41
- Watchers: 6
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Animation Library
[![](https://img.shields.io/badge/github-repo-blue?logo=github)](https://github.com/zigurous/unity-animation-library) [![](https://img.shields.io/github/package-json/v/zigurous/unity-animation-library)](https://github.com/zigurous/unity-animation-library/releases) [![](https://img.shields.io/badge/docs-link-success)](https://docs.zigurous.com/com.zigurous.animation) [![](https://img.shields.io/github/license/zigurous/unity-animation-library)](https://github.com/zigurous/unity-animation-library/blob/main/LICENSE.md)
The **Animation Library** package contains assets and scripts for animating Unity objects. Animation behaviors include Blink, FollowPath, Move, Orbit, Rotate, Scale, SmoothFollow, SmoothLookAt, and more. The package also contains several animation-related data structures and predefined avatar masks.
## Reference
- [Behaviors](https://docs.zigurous.com/com.zigurous.animation/manual/behaviors)
- [Data Structures](https://docs.zigurous.com/com.zigurous.animation/manual/data-structures)
- [Animator Parameters](https://docs.zigurous.com/com.zigurous.animation/manual/animator-parameters)
- [Avatar Masks](https://docs.zigurous.com/com.zigurous.animation/manual/avatar-masks)## Installation
Use the Unity [Package Manager](https://docs.unity3d.com/Manual/upm-ui.html) to install the **Animation Library** package.
1. Open the Package Manager in `Window > Package Manager`
2. Click the add (`+`) button in the status bar
3. Select `Add package from git URL` from the add menu
4. Enter the following Git URL in the text box and click Add:```
https://github.com/zigurous/unity-animation-library.git
```## Namespace
Import the package namespace in each script or file you want to use it. You may need to regenerate project files/assemblies first.
```csharp
using Zigurous.Animation;
```