Currently I can move AutoParallaxBackground's "ParallaxEntity" in one axis. Like:
final AutoParallaxBackground autoParallaxBackground = new AutoParallaxBackground(0, 0, 0, 12);
autoParallaxBackground.attachParallaxEntity(new ParallaxEntity(0.0f, new Sprite(0, 0, resourcesManager.gameBackgroundRegion, vbom)));
autoParallaxBackground.attachParallaxEntity(new ParallaxEntity(-3.0f, new Sprite(0, 300, resourcesManager.gameCloudFarRegion, vbom)));
This will make the "gameCloudFarRegion" move left to right.
I want to move something from Top to bottom or bottom to top, I mean Y axis.
How can it be done?