记录nuity学习发开日志,常用代码库:
transform //基础操作类
transform.eulerAngles = new Vector3(0, 0, -90); //旋转
this.transform.Translate(0, floval(), 0, Space.Self); //让当前对象向Y轴移动
this.transform.up;//获取向上的向量 right向右 forward向下
target.transform.position//获取当前对象的坐标
float angle = Vector3.SignedAngle(Vector3(), Vector3(), Vector3.forward);//计算夹角
this.transform.Rotate(0, 0, angle);//旋转对象
Vector3 sp = Camera.main.WorldToScreenPoint(transform.position);//将对象位置转换为屏幕的位置
Destroy(this.gameObject);//销毁对象
GameObject bllo = Instantiate(gameObject);//创建预制体