I've an Entity
"holder" with some child Sprites
and ButtonSprites
.
When I do something like:
entity.registerEntityModifier(new FadeInModifier(ALPHA_MODIFER_DURATION));
nothing happens, but if I register this EntityModifier
to the child Sprites
one by one it works. What's happening?
ps: MoveModifier works though.