Bluenix2 / crackout

A now archived breakout clone, crackout! Because crack is a synonym of break.
MIT License
1 stars 0 forks source link

Implement more bricks to the game #13

Open Bluenix2 opened 4 years ago

Bluenix2 commented 4 years ago

More Bricks!

As the game is starting to take shape and progress it's time to think about making it harder for the player. One aspect we should look further into is different types of Bricks. Because of the way Bricks were meticulously designed we have the ability to follow the principles of OOP and extend them while overwriting the Hit() method. Godot also allows a instance to have editable children, this gives us access to the sprite so we can change texture.

Some things we can work with regarding bricks:

Bluenix2 commented 4 years ago

With eda30f8282e55b628a9172dd4f70d051191d796d and 88b00c5f7511e9380011214c4ff5b5f0b8ecc009 a new base-brick with health was added along with two bricks using this. These commits are great examples how our Brick-system works and how in the future more bricks should be implemented.