Tags make it particularly easy to locate specific game objects. We can look for a single game object, or look for multiple.
Finding a Single GameObject
We can use the static function GameObject.FindGameObjectWithTag(string tag) to look for individual game objects. It is important to note that, i...