unity:坐标系
程序开发
2023-09-02 17:18:04
1.世界坐标系
世界的中心点
this.transform.position;
this.transform.rotation;
this.transform.eulerAngles;
this.transform.lossyScale;//缩放大小
2.物体坐标系
this.transform.Localposition;
this.transform.Localrotation;
this.transform.LocaleulerAngles;
this.transform.localScale;//缩放大小
物体的中心点
3.屏幕坐标系
向右为x轴正方向
向上为y轴正方向
最大宽高:
Screen.Width
Screen.height
Input.mousePosition
4.视口坐标系
向右为x轴正方向
向上为y轴正方向
特点:
左下角为(0,0)
右上角为(1,1)
坐标系的转换
标签:
相关文章
-
无相关信息