下列()代码功能是将游戏对象绕Z轴逆时针旋转90度。
(A)transform.rotation = Quaternion.Euler(0,0,90)
(B)transform.rotation = Quaternion.Angle(0,0,90)
(C)transform.Rotate(new Vector3(0,0,90))
(D)transform.Rotate(new Vector3(90,0,0))
参考答案
继续答题:下一题
(A)transform.rotation = Quaternion.Euler(0,0,90)
(B)transform.rotation = Quaternion.Angle(0,0,90)
(C)transform.Rotate(new Vector3(0,0,90))
(D)transform.Rotate(new Vector3(90,0,0))