C# (CSharp) Nez.Tweens Namespace

Classes

Name Description
AbstractTweenable AbstractTweenable serves as a base for any custom classes you might want to make that can be ticked. These differ from ITweens in that they dont implement the ITweenT interface. What does that mean? It just says that an AbstractTweenable is not just moving a value from start to finish. It can do anything at all that requires a tick each frame. The TweenChain is one example of AbstractTweenable for reference.
EaseHelper helper with a single method that takes in an EaseType and applies that ease equation with the given duration and time parameters. We do this to avoid passing around Funcs which create bogs of trash for the garbage collector (function pointers please!)
Easing.Back
Easing.Bounce
Easing.Circular
Easing.Cubic
Easing.Elastic
Easing.Exponential
Easing.Linear
Easing.Quadratic
Easing.Quartic
Easing.Quintic
Easing.Sinusoidal
Lerps series of static methods to handle all common tween type structs along with unclamped lerps for them. unclamped lerps are required for bounce, elastic or other tweens that exceed the 0 - 1 range.
TransformSpringTween
TweenManager