1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

 【Unity】オブジェクトの落下速度を上げる

Last updated at Posted at 2023-05-31

はじめに

Unity標準設定の Gravity(重力加速度)は現実空間の9.81m/s^2に設定されていますが、よく見かけるゲームと比べてジャンプ時等の落下速度(Y軸方向の移動速度)が遅く、ふわふわ落下しているように感じるので落下速度の変更方法を記録します。

変更方法

Edit > Project > Settings > Physics

  • Gravity を変更する。( 個人的には-30程度が心地良い速度に感じる)
    image.png

おまけ

落下速度を遅くしたい場合はRigidBodyのDrag(抗力)をデフォルトの0から大きい値に設定してください。(デフォルトは0なので落下に関しては最速設定になっていますので、速くする側には設定できないです。)

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?