Search Tutorials
Step 4 : Parallax scrolling This example only has one scrolling background but you can improve the look of your game by adding in a second scrolling background. Your second background could be some stars or distant mountains. If you set the scrollSpeed for this background to a slower amount you will get an effect known as parallax scrolling - it gives a nice feeling of depth to the game. Try adding in a second scrolling background yourself. You will follow the same steps and use the exact same code as you did for the ground. The only difference is that the graphic will be something different (eg: stars) and that the movie clip instance names will be different (eg: stars and mainStars). And the set the speed to a slower speed such as 4. The code for you mainStars movie clip should be something like (assuming you have named your movie as stars)
onClipEvent (load) {
stars.duplicateMovieClip("stars2", 1000);
stars2._x = stars._x+stars._width;
starsStartx = this._x;
starsSpeed=4;
}
This source file demonstrates parallax scrolling with a stars background: tutorial2_partd.fla and can be found in this tutorials zip file. That concludes this tutorial, the next part of this series will finish the game by adding enemies to fire at and scoring. cheers David
|
|||||||||||||||||||||||||||||||||||||||||||||||||||
![]() |
|||||||||||||||||||||||||||||||||||||||||||||||||||
|