8000 GitHub - ez8801/UniRxForTween
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

ez8801/UniRxForTween

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

UniRxForTween

About

A simple script that makes it easy to use tween using Urirx.

Usage

void DoTween()
{
	SimpleTweener.EaseIn(0.25f, OnNext, OnCompleted);

	// You can also change curve method and range
	SimpleTweener.EaseInOut(0f, 100f, 0.25f, OnNext, OnCompleted);

	// Available Linear, Ease in, Ease out, Ease in-out, Bounce in, Bounce out
}

void OnNext(float value)
{
	
}

void OnCompleted()
{
	// Done!
}

License

Distributed under the MIT License. See LICENSE for more information.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0