Basically just Asteroids with a few extra bells and whistles.


Controls

  • Move: WASD / Arrow Keys
  • Fire: Space Bar
  • Pause: P / Escape


Details


StatusReleased
PlatformsHTML5
Rating
Rated 5.0 out of 5 stars
(1 total ratings)
AuthorZac E
GenreShooter
Tags2D, Asteroids, LÖVE, Shoot 'Em Up, Space, Top down shooter

Comments

Log in with itch.io to leave a comment.

Whel the game is fun, and fancy. I'd put more enemy colours, more power ups, and change the player movement. It feels so cluncky its not that the game wants you to move so much, its not dynamic. 

What I rather do is set to the player an acceleration, a maximum speed and a velocity vector. So that when you press the up arrow you add to your velocity vector your acceleration:

//code example

if uArrow :

          v.x += acceleration * cos(angle);

          v.y += acceleration * sin(angle);

position.x += v.x;

position.y += v.y;

//end of code

 Then it would fell like you are in space, just like in the original asteroids.

Nice game, I like the effects, and that the ship jumps back when firing... I wish it wouldn't die on the first hit.  You can check out my asteroids game too, it has a Good and Evil twist:


https://quoisegames.itch.io/the-asteroids-of-life

I liked it! You can’t go wrong with an Asteroids-like game. :-)

Music is just awesome! Added it to my playlist.

It’s nice to see a game made with love once in a while.