Open shivanraptor opened 9 years ago
Currently I have to use the following codes to fade in or out images ( Raster ).
var raster = new Raster('mona'); raster.position = view.center; function onFrame(event) { if(raster.opacity > 0.01) { raster.opacity -= 0.01; } else { raster.opacity = 0; } }
It's hoped that fadeIn() and fadeOut() are available for Raster class.
fadeIn()
fadeOut()
Raster
@shivanraptor have a look at https://github.com/Eartz/animatePaper.js its a great library for animations in paper.js
http://paperjs.org/reference/tween/
Currently I have to use the following codes to fade in or out images ( Raster ).
It's hoped that
fadeIn()
andfadeOut()
are available forRaster
class.