屏幕坐标转世界坐标是不是用 Camera 的 screenToWorld, 这个转换出来的好像是摄像机坐标。
屏幕点击位置的获取,提供了5个接口,下面是点击屏幕中心点返回的数据,getLocationInView 这个是什么鬼坐标。
TOUCH_START name = UICanvas getLocation = (698.00, 1270.00) getUILocation = (349.00, 635.00)
getLocationInView = (698.00, 10.00)
getStartLocation = (698.00, 1270.00) getUIStartLocation = (349.00, 635.00)
如果想要正确的转换屏幕坐标到世界坐标,要用那个接口
@panda