So in my custom made solution of UI,EventSystem type things, which is really similar in pattern to Unity’s, just a lot simpler. I would do something called ‘RaycastOffset’ where, when the user started to drag an object, I would offset the point at which the raycast actually occurred about half an inch above the finger and then put a reticle on it.
Is there anyway in the current EvenSystem to essentially offset the point at which the raycasting occurs from the finger?
Also, there are some instances where I am dragging an object, then the object needs to change to a different object entirely. In my old system I had some functions like DetachRaycastingFromObject and AttachRaycastingToObject in order to switch the object receiving drag events mid drag. Could someone direct me to the place to do this with the new event system with most ease?