首页 > 代码库 > unity 获取和设置gameObject的坐标
unity 获取和设置gameObject的坐标
// 获取player_postion变量指定的对象的三围坐标
Vector3 player_postion = Player.transform.position;
// 获取X,Y,Z值
float x = player_postion.x;
float y = player_postion.y;
float z = player_postion.z;
// 设置应用了当前函数的GameObject的坐标
// 1.直接赋值
this.GetComponent<Transform>().position = player_postion;
// 2.在某GameObject的基础上加
this.GetComponent<Transform>().position = new Vector3(player_postion.x, player_postion.y + 7.79F, player_postion.z - 15);
//或者是
this.GetComponent<Transform>().position = player_postion + new Vector3(0, 7.79F, -15);
unity 获取和设置gameObject的坐标
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。