[Game] Block Breaker

Good evening all,

This is my first attempt at block breaker. I have almost finished this section and thought i’d see what people thought.

I’ve never really coded before especially games so it will be interesting to hear people’s thoughts.

Play Here

I noticed after I “built” the game, the music stops at the end of the loop - i must have forgotten to loop the track.

Any feedback is greatly appreciated.

I am looking at introducing lives but not really sure how I go about implementing this - anyone any ideas?

The idea will be every time the collider is hit, a life is lost up to a maximum of 3 lives.

If anyone has any other feedback it’d be much appreciated.

Yeah, lives are pretty easy to implement, I just created a public static variable within a new class on a gameobject called ScoreLifeCtr that tracked lives and score. Then whenever the LoseCollider was hit you just add “ScoreLifeCtr.lifeCount–;” to the OnCollision portion. :smiley: