-
9宫格设计 : 比如说4个角的图案固定,拉伸的时候不受影响
-
通过设置 左上右下来:
-
通过创建Image对象,将设置好的图片关联到Source Image
-
调整瞄准镜跟随飞机, 注意这里设置的Z轴向量是0,这样能保证一直在视角前方
if (aimUI) { Vector3 u = camUI.WorldToScreenPoint (transform.position + transform.forward * 9999); aimUI.localPosition = new Vector3 (u.x- Screen.width * 0.5f, u.y - Screen.height * 0.5f, 0);; //设置的x和y都要减去屏幕长宽的一半,是因为aimUI本身的对其方式就是基于父节点Canvas的中心点后再次居中,而不是基于整个Scene的中心点居中,所以要减去相应的数值 }