Ani icon indicating copy to clipboard operation
Ani copied to clipboard

A lightweight animation library for the programming environment Processing

Results 10 Ani issues
Sort by recently updated
recently updated
newest added

When using Ani in classes and using a bang() or similar method, the applet freezes on occasion. This happened in my own sketch but I was able to reproduce the...

bug

This would allow creating sequences in other classes and then create the final sequence by cascading child sequences. Would be a nice-to-have.

In the code below (you also can download it) I recreated this strange behavior I'm referring to in the title. All the animations should basically be in sync and start...

the zip at http://benedikt-gross.de/libraries/Ani/Ani-latest.zip contains a folder called `demos` that should be called `examples` see: https://github.com/processing/processing/wiki/Library-Guidelines#folder-structure

I am not sure if I am missing something, but here is the simple example when Ani.from doesn't work at all when I set delay greater than 0: ``` import...

``` java Ani.to(this, 1, 0, "x:1", Ani.SINE_IN_OUT, this, "onStart:onS, onDelayEnd:onD"); ``` should call function `onD()` immediately after `onS()`. Now `onD()` isn't called.

Currently, one has to add the callback to one of the Ani's of the sequence, e.g. the last one for onEnd.

Continuing from the post over here: https://forum.processing.org/topic/ani-animation-overrun Having issues with animations not always ending on the targets I set. It seems to be most prevalent when when using easing and...

bug

When creating a looped sequence, something seems to go wrong if the first item in the sequence has a delay. The issue is not present if other items in the...

bug

`### Ani Debug -> Error @ AniCore -> setCallbackMethods(). Can't find a method of name: finAnimation` ``` import de.looksgood.ani.*; PVector[] liste; // utilisation d'un tableau comme dans l'algorithme fourni float...