I know you can do GetComponent and it looks for other scripts in the same gameObject.
Then there’s GetComponentInChildren which looks for scripts in the gameObject’s children.
I was wondering if there was the same thing but for looking up in hierarchy like GetComponentInParent?
Or if GetComponent is already doing that.