言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

Rigidbody2D.isKinematic

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual
public var isKinematic: bool;
public bool isKinematic;
public isKinematic as bool

Description

Rigidbody が物理挙動の影響を受けるか

このプロパティを true にセットすると Rigidbody は衝突や適用された力の影響を受けなくなります。これはオブジェクトが Kinematic (すなわち物理挙動の影響を受けることなく)制御したい場合に役に立ちますが、リアリティを追求する場合に物理挙動が必要な場合があります。例えば、人間のキャラクターは通常、物理挙動を用いて実装されませんが、ときには衝撃または爆発の影響により宙に舞ってオブジェクトと衝突させたい、というケースの場合などに考えられます。 See Also: Rigidbody.isKinematic.