antfarmar / Unity-3D-Asteroids

A simple Asteroids clone. In 3D.
The Unlicense
65 stars 15 forks source link

TODO: Features & Polish (Long Term) #6

Open antfarmar opened 8 years ago

antfarmar commented 8 years ago

Powerups

ghost commented 8 years ago

Particle system bugfix pull request https://github.com/antfarmar/Unity-3D-Asteroids/pull/16

antfarmar commented 8 years ago

Added another particle system explosion prefab ExplosionShip. It is for ship explosions. Both the PS and AudioSource components are set to play on Awake, so no script is needed. They are also one-time Instantiations & Destroys. Not pooled. This is inconsistent with the currently used idiom of pooling objects though. But it is a one time occurrence per game. Perhaps it could be a child of the ship prefab.

antfarmar commented 8 years ago

ExplosionShipparticle systems are still one-time Instantiations & Destroys, but now make use of the ExplosionBehaviour script so that they may be handled similar to asteroid explosions in code.

antfarmar commented 8 years ago

Various power-ups & a star system particle background implemented.