Releases: pixijs-userland/animate
Releases · pixijs-userland/animate
1.1.0
Changed
- Typings included via
require()
to be a module typing, kept previous file as global typing for optional inclusion in place of the module typing. #35
Fixed
- Fixes an issue with skew changing slightly in the latest version of pixi.js. This change to the unit-test code accounts for the subtle difference. #33
1.0.1
🐛 Fixed
- Fixes typings were not being included in the latest published release
1.0.0
Fixed
- Fix text align with compressed output (
0
vsleft
) #31
Changed
- Using pixify for standardized build process consistent with pixi.js. #29
- pixi.js is now a peer dependency now that v4 has stabilized #29
Removed
- Removes the loophole dependency and push that down to the jibo-sdk #29
Added
- Adds typings to support TypeScript environments. #29
0.7.4
0.7.3
Added
- Adds new API for handling playing of audio files
PIXI.animate.sound
Removed
- Deprecated support for Bower, this never was implement fully.
0.7.2
0.7.1
Changed
- Updated to v4 release of PIXI
- Replaced YUIdoc with JSDoc
- Use the same docs theme as Pixi.js, for consistency.
0.7.0
0.6.2
Fixed
- Resolves an issue where destroying an instance on Animator callback would complain about
length
being undefined. - Improve the destroy functionality for MovieClip to destroy all timelines, not just children.
0.6.1
Added
- Adds
Animator.stopAll
to stop all the current animation timelines - Adds
Animator.fromTo(instance, start, end, loop, callback)
as a lower-level version ofplay
to allow for different types of label schemas or to use frame numbers. - Adds
Animator.to(instance, end, callback)
to play to a certain frame and get a callback. - Adds
Animator.play(instance, callback)
this will play the entire timeline from 0 to the last frame.
Fixed
- Fixes an issue where Animator would go past the end frame when animating in low performing environments