Skip to content

Latest commit

 

History

History
40 lines (22 loc) · 1.61 KB

README.md

File metadata and controls

40 lines (22 loc) · 1.61 KB

Space Blast

Space Blast is a space-themed multidirectional shooter game created using python in PyCharm IDE using Pygame module. The player controls a single spaceship in space field which is periodically traversed by asteroids. The object of the game is to shoot and destroy the asteroids, while not colliding with either. The game becomes harder as the score of game increases.

Gameplay

Player Movement

The player always faces in the cursor position.

AWSD Keys are used to move the position of the player.

Enemy Movement

The Enemy Sprite by using a directional vector moves towards the player until they collide.

If Player changes position the directional vector is normalized and recalculated to follow the enemy.

Collision/Animation

Collision of Player Sprite with Enemy Sprite.

Collision of Enemy Sprite with Bullet.