Effortless PrimeTween management via the Unity Inspector.
PrimeTween Animator is an extension project designed to make PrimeTween—an exceptional tweening asset—even more convenient to use within the Unity Inspector without modifying any code.
As this is in the early stages of development and I have limited experience with open-source distribution, there may be bugs.
Additionally, the original creator, KyryloKuzyk, is currently developing a Pro version of PrimeTween. Once it's released, I highly recommend checking it out!
Important
This extension requires PrimeTween. Make sure to install PrimeTween via UPM before proceeding.
You can install this package via the Unity Package Manager (UPM).
- Open the
Package Managerin the Unity Editor. - Click the
+button in the top-left corner and selectAdd package from git URL.... - Enter the following URL and click
Add:Note: Depending on your Unity version, the button may sayhttps://github.com/min6436k/Prime-Tween-Animator.git?path=Assets/PrimeTweenAnimatorInstallinstead ofAdd.
To enable the Additive tween feature, you need to register a specific scripting symbol in your project.
-
Navigate to Project Settings > Player > Other Settings.
-
Add the following text to the Scripting Define Symbols field:
PRIME_TWEEN_EXPERIMENTAL -
Once added, the Additive button will be enabled for specific Transform tweens, allowing you to create animations that stack on top of current values!
Warning
Using Additive tweens may introduce very small floating-point errors. While negligible for thousands of iterations, it may have a noticeable impact if accumulated hundreds of thousands of times or more. For more details, please refer to this Discussion.