6.6.3 • Published 3 years ago

io.nekonya.tinax.tween v6.6.3

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

TinaX Framework - Tween.

LICENSE LICENSE

TinaX is a Unity-based framework, simple , complete and delightful, ready to use.

TinaX provides functionality in the form of "Unity packages".

TinaX.Tween provides a lightweight tween animation library for TinaX Framework.

  • Lightweight tween animation library
  • Tween animation components that can be used without coding

package name: io.nekonya.tinax.tween


QuickStart

The core function of this library is based on TweenRx (MIT license). You can also directly visit TweenRx's repo to view relevant documents.

Simple float animation

using UniRx;
using TinaX.Tween;

Tween.Play(1, 10)
    .Subscribe(value =>
    {
        gameObject1.transform.localPosition = new Vector3(x, 0, 0);
    });

Tween component

We can use components in the editor without coding to achieve tween animation function.

1619467493256

For more usage, please see the document.


Install

Please visit the documentation for installation instructions:Install TinaX

Dependencies


Learn TinaX

You can find out how to use the various features of TinaX in the documentation


Third-Party

The following excellent third-party libraries are used in this project:

  • TweenRx : (MIT License)Reactive animation utility for Unity.