我想要达到的效果是鼠标悬停在装备内有文字介绍,并且跟随鼠标移动
{Vector2 pos;
RectTransformUtility.ScreenPointToLocalPointInRectangle(canvas.transform as RectTransform, Input.mousePosition, null, out pos);
PickItem.SetLocalPos(pos);
}
显示在相机外面很远的地方,我也尝试直接用Input.mousePosition,但效果也不是很好
求解,