if (!stickyPress && !unpressed && currentTouch.pressStarted && currentTouch.pressed != hoveredObject)
{
isDragging = true;
Notify(currentTouch.pressed, "OnPress", false);
currentTouch.pressed = hoveredObject;
Notify(currentTouch.pressed, "OnPress", true);
isDragging = false;
}