Some time ago I did a blog post about the famous Arkanoid game and its adaptation to Windows Phone using XNA. Couple of weeks ago, I attempted to recreate it from scratch using the Unity game engine and, to no surprise, it was pretty a piece of cake. Below you can see a screenshot from the start screen of the game. Let’s do a lap around the project. First of all, we have one and only one scene, the game one. We have a Camera, set to Orthographic projection (most suitable for 2D games) a directional light a GameManager gameobject which holds the GameManager script, in charge of running our game the Ball which goes around on the level the Paddle which is the means that the user will utilize in order to prevent the Ball from touching the floor the Floor, which if collided with the Ball will decrease player’s lives the SideBlocks which just make the Ball stay in our level and, of course, the Blocks which have to be hit by the Ball (via user’s assistance) and are organized in four BlockRow objects Purpose of the game

Διαβάστε περισσότερα »