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

スクリプト言語

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

Rigidbody2D.interpolation

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 interpolation: RigidbodyInterpolation2D;
public RigidbodyInterpolation2D interpolation;
public interpolation as RigidbodyInterpolation2D

Description

物理挙動の Update の間で使用される補間

補間は Update の間の Rigidbody の位置を推定するのに使用されます。グラフィックスの Update が 物理挙動の Update より頻繁である場合にこれを有効にすることで役に立ち、オブジェクトがスムーズに移動するでなく不自然に跳ねる動作を防止できます。 interpolate (内部補間)モードにより、動作はオブジェクトの前フレームの位置にもとづいてスムージングされます。 Extrapolate (外部補間)モードにより、動作は推定される次のフレームの位置にもとづいてスムージングされます。オブジェクトのゲームプレイにおけるダイナミクスにもとづいてどちらを使用すべきかの判断が行なわれます。 See Also: Rigidbody.interpolation.