It looks like this method, which is used in a few places, is deprecated.
Assets\Scripts\ChekpointArea.cs(17,19): warning CS0618: 'Object.FindObjectOfType<T>()' is obsolete: 'Object.FindObjectOfType has been deprecated. Use Object.FindFirstObjectByType instead or if finding any instance is acceptable the faster Object.FindAnyObjectByType'
I have gone through and replaced Object.FindObjectOfType<T>() with Object.FindFirstObjectByType<T>(). I will see if that also works.
It looks like this method, which is used in a few places, is deprecated.
I have gone through and replaced
Object.FindObjectOfType<T>()withObject.FindFirstObjectByType<T>(). I will see if that also works.