Releases: anim8js/anim8js
Releases · anim8js/anim8js
Release 1.1.1
Changes
- Pass point index & delta from Path.compute through a live point function
anim8.path({
type: 'point',
point: function(index, delta) {
return delta * 10;
}
});
Release 1.1.0
Changes
- deltas are now automatically normalized
Issues
- Add scale to easing (resolves #11)
- Add insert to Animator[s] (resolves #17)
- parseArry should be fixed to parseArray (resolves #18)
- Add Point Path (resolves #20)
- Pass
for
to animation parsing - so if an animation object is provided it can automatically know what factory to use. (resolves #19) - Add factory as saveBatch option (resolves #10)
Release 1.0.6
Changes
- Fixed isEmpty Logic
- Added Documentation
- Fixed Transparent Color
Release 1.0.5
Changes
- Added subset path (PathSub or
sub
) - Added quadratic corner path (PathQuadraticPath or
quadratic-corner
) - Added linear path (PathLinear or
linear
) - Added uniform path for moving over another path at a constant velocity (PathUniform or
uniform
) - Added cubic hermite spline path (PathHermite or
hermite
) - Added bezier path (PathBezier or
bezier
) - Added generic parametric path (PathParametric or
parametric
) - Added catmull-rom path (PathCatmullRom or
catmull-rom
) - Added b-spline path (PathBasisSpline or
basis-spline
)
Release 1.0.4
- Bug FIxes
- Updated README
Release 1.0.3
v1.0.3 Class.create -> Class.extend
Release 1.0.2
- Fixed bower references
Release 1.0.1
- Exclude
src
from bower - Export
Class
toanim8.Class
Release 1.0.0
Initial Release