Adobe animate - createJS filter on movieclip animation
How can i combine animation with createJS filter(s) on movieclips in adobe animate?
If a "drop" the filter on anything that moves the animation stops. (i see some spirtesheet solutions but i want to avoid that. I need solution for movieclip animation)
Here's my EaselJS code ("sliderValue" is a value of a slider, please see example (link)):
myMovieClip.filters = [
new createjs.ColorFilter(1,1,1,1, sliderValue,sliderValue,sliderValue,0)
];
myMovieClip.cache(0, 0, 195, 195);
As you can see in this example: www.fotobetyar.hu/easeljs/ I just wanted to rotate AND change the brightness of the cross/movieclip.
Rookie programmer here. Please write examples. Thanks
