gameObjectの角度をオイラー角で知りたい場合

2023年3月23日

Debug.Log(transform.localEulerAngles);

で、取得することができます。

また、特定の回転された角度で方向を得たい場合、

newBullet.GetComponent<Rigidbody2D>().AddForce(spawnPoint.transform.up)

とすることで、可能になります。

Unity,学習

Posted by hidepon