Tag: Powerup

Creating Modular PowerUp Systems

I love games with PowerUps! Let’s take a look at a way to create a modular PowerUp system in Unity. In our example game we’ve created a PowerUp script to handle the behavior for a TripleShot PowerUp. The PowerUp has a chance to drop after an enemy is destroyed, it moseys along in spac...

Creating Modular Powerup Systems

Generally, video games include more than one powerup in them; and the game I’m working on is no exception. When making these, you can create a script for each powerup or we can do something else. Each powerup will be doing the same thing, as far as the behavior is concerned, but will give the ...