中文
Appearance
Vector3.CopyFrom(from)
Vector3
将自身的各分量值变为指定的向量
void
let lhs = new Vector3(1,2,3); let rhs = new Vector3(3,4,5); lhs.CopyFrom(rhs); Debug.Log("lhs is",lhs);