In PathFinder.cs, I got a red squiggly telling me that it couldn’t use foreach because there was no IEnumerator. It turns out I had a missing ‘s’ in the method, “Object” vs “Objects”!
It couldn’t loop through the list because it was only returning one object.
Took a while to catch that one