【Unity】回転を0に初期化する

投稿者: | 2021-04-07

Quaternion.identityでも回転なしの値を得られますが、defaultを使って0に初期化することもできます。

シーンには親子にした2つのCubeをおいて、親にスクリプトを付けました。

左ドラッグでCubeを回転して、右クリックで回転にdefaultを代入して0に初期化しています。

  1. using UnityEngine;
  2. using UnityStandardAssets.CrossPlatformInput;
  3.  
  4. public class CubeController : MonoBehaviour
  5. {
  6. [SerializeField] float turnSpeed = 5f;
  7. Transform childCube;
  8.  
  9. // Start is called before the first frame update
  10. void Start()
  11. {
  12. // 黄色いCubeのトランスフォーム
  13. childCube = transform.GetChild(0);
  14.  
  15. Debug.Log("Quaternion.identity = " + Quaternion.identity);
  16. Quaternion rot = default;
  17. Debug.Log("default = " + rot);
  18. }
  19.  
  20. // Update is called once per frame
  21. void Update()
  22. {
  23. // 左クリック中は回転させる
  24. if (Input.GetMouseButton(0))
  25. {
  26. var x = CrossPlatformInputManager.GetAxis("Mouse X");
  27. var y = CrossPlatformInputManager.GetAxis("Mouse Y");
  28.  
  29. // シフトキーを押している時は子を回転
  30. if (Input.GetKey(KeyCode.LeftShift))
  31. {
  32. childCube.localRotation *= Quaternion.Euler(childCube.InverseTransformDirection(Camera.main.transform.up) * x * -turnSpeed);
  33. childCube.localRotation *= Quaternion.Euler(childCube.InverseTransformDirection(Camera.main.transform.right) * y * turnSpeed);
  34. }
  35. // 押していないときは親を回転
  36. else
  37. {
  38. transform.localRotation *= Quaternion.Euler(transform.InverseTransformDirection(Camera.main.transform.up) * x * -turnSpeed);
  39. transform.localRotation *= Quaternion.Euler(transform.InverseTransformDirection(Camera.main.transform.right) * y * turnSpeed);
  40. }
  41. }
  42. // 右クリックでリセット
  43. else if(Input.GetMouseButtonDown(1))
  44. {
  45. // シフトキーを押しているときは子
  46. if (Input.GetKey(KeyCode.LeftShift))
  47. {
  48. // コントロールキーを押しているときはワールド
  49. if(Input.GetKey(KeyCode.LeftControl))
  50. {
  51. //childCube.rotation = Quaternion.identity;
  52. Quaternion rot = default;
  53. rot.w = 1f;
  54. childCube.rotation = rot;
  55. }
  56. // 押していないときはローカル
  57. else
  58. {
  59. // childCube.localRotation = Quaternion.identity;
  60. childCube.localRotation = default;
  61. }
  62. }
  63. // シフトキーを押していないときは親
  64. else
  65. {
  66. // transform.localRotation = Quaternion.identity;
  67. transform.localRotation = default;
  68. }
  69.  
  70. }
  71. }
  72. }

しかし、defaultを入れるだけだと、子のワールド回転に代入しても、親の軸に揃ってしまいます。Quaternion.identityのときはワールドの軸に揃いました。

これは、Quaternion.identiryと回転のdefaultでは、4つ目の値が異なるからだと思います。

上のスクリプトでは、回転のdefaultのwに1を入れると、ワールドの軸に揃うようになりました。

  1. Quaternion rot = default;
  2. rot.w = 1f;
  3. childCube.rotation = rot;

コメントを残す

メールアドレスが公開されることはありません。