Hey guys,
I was wondering… does Slick have any libraries for adding effects to images along the lines of drop shadow or glow?
I used pulpcore prior to slick, and pulpcore had something along the lines of:
// -- creates a default glow and default drop shadow, and adds effects to image i.
Glow g = new Glow();
DropShadow s = new DropShadow();
FilterChain f = new FilterChain(g,s);
Image i = new Image("someimage.png",x,y);
i.setFilter(f);
Thanks,
-Pickle