duck-tween icon indicating copy to clipboard operation
duck-tween copied to clipboard

A tween library for unity

Results 8 duck-tween issues
Sort by recently updated
recently updated
newest added

Fixed an issue that `CurrentValue` isn't set to `From` if the animation never started.

# Problem Quite often you want a sequence that contains a repeated portion of an animation. There is no decent way to do this, you either loop and create multiple...

enhancement

# Functional Problem 1 (IsReverse is not respected) ## The code ``` public override void FastForward() { // Set the animation state to its final form CurrentTime = Duration; Refresh(Progress);...

bug
enhancement
help wanted

## Context Right now the `UpdateList` is a generic thing that can update a series of update functions with the signature `void Update(float dt)`. Originally it was designed to be...

enhancement

`/Scripts/Extensions/AnimationCollectionExtensions.cs` contains a method called: `SafeFastFowrward`. This should be `SafeFastForward`

Can also now remove things like `SafeFastForward`.

enhancement

RendererFadeAnimation only really works with some standard shaders and built in components. I think we need a more abstract set of animations for material/shader properties. My suggestions are * `FloatShaderPropertyAnimation(Renderer...

enhancement

# Problem If we do the following: ``` tween = new ParalleledAnimation() .ScaleX(transform, 0.5f, 2f) .ScaleY(transform, 2f, 1f); ``` We expect that x will scale 0.5f up to 2 whilst...

bug