[]3d模型位置设置
将一个3d模型的位置 赋给 另一个位置 应该怎么写,怎么才能生效呢?
A.transform.translate(B.transform.position,false);
A.transform.rotate(B.transform.rotation,false,false) ;
A.transform.translate(B.transform.position,false);
A.transform.rotate(B.transform.rotation,false,false) ;
没有找到相关结果
已邀请:
要回复问题请先登录
1 个回复
183*****755
赞同来自:
var _tempV3 = new Vector3();
a.transform.position.cloneTo(_tempV3);
b.transform.position = _tempV3;