https://github.com/zigurous/unity-tweening-system
🌪️🌀 An animation system for tweening object properties in Unity.
https://github.com/zigurous/unity-tweening-system
animation assets package tweening unity
Last synced: 25 days ago
JSON representation
🌪️🌀 An animation system for tweening object properties in Unity.
- Host: GitHub
- URL: https://github.com/zigurous/unity-tweening-system
- Owner: zigurous
- License: mit
- Created: 2021-02-03T02:23:22.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-08-13T04:03:19.000Z (over 1 year ago)
- Last Synced: 2024-08-13T05:23:09.237Z (over 1 year ago)
- Topics: animation, assets, package, tweening, unity
- Language: C#
- Homepage: https://docs.zigurous.com/com.zigurous.tweening
- Size: 565 KB
- Stars: 31
- Watchers: 6
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
- anything_about_game - unity-tweening-system
README
# Tweening
[](https://github.com/zigurous/unity-tweening-system) [](https://github.com/zigurous/unity-tweening-system/releases) [](https://docs.zigurous.com/com.zigurous.tweening) [](https://github.com/zigurous/unity-tweening-system/blob/main/LICENSE.md)
The **Tweening** package provides a system for tweening object properties in Unity. A tween is an animation of a value from a start position to an end position using an easing function, providing a natural sense of motion.
The system is lightweight, optimized, type-safe, and memory efficient. Hundreds of predefined tweening functions can be called on many common Unity objects, or you can animate anything using generic tweening functions. Tweens can be controlled with many different control methods and various callback functions.
## Reference
- [Tweens](https://docs.zigurous.com/com.zigurous.tweening/manual/tweens)
- [Sequences](https://docs.zigurous.com/com.zigurous.tweening/manual/sequences)
- [Easing](https://docs.zigurous.com/com.zigurous.tweening/manual/easing)
- [Events](https://docs.zigurous.com/com.zigurous.tweening/manual/events)
- [Property Chaining](https://docs.zigurous.com/com.zigurous.tweening/manual/property-chaining)
- [Managing Tweens](https://docs.zigurous.com/com.zigurous.tweening/manual/managing-tweens)
- [Supported Types](https://docs.zigurous.com/com.zigurous.tweening/manual/supported-types)
- [Settings](https://docs.zigurous.com/com.zigurous.tweening/manual/settings)
## Installation
Use the Unity [Package Manager](https://docs.unity3d.com/Manual/upm-ui.html) to install the **Tweening** 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-tweening-system.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.Tweening;
```