Unity Game Development — Optimizing Code with Switch Statements

Previously, I worked on a script to create modular power-ups. The code uses conditional statements to control which type of power-up the player collects. If we decide to add more and more types of player upgrades, this code will get long and messy.
Enter the switch()
statement.
The switch statement is a selection statement that…