Version: 2021.3
言語: 日本語
public void AddForceAtPosition (Vector3 force, Vector3 position, ForceMode mode= ForceMode.Force);

パラメーター

force ワールド座標における力のベクトル
position ワールド座標における位置
mode 適用する力のタイプ

説明

特定の位置から力を適用します。結果、これはトルクを適用しオブジェクトに力を加えます

For realistic effects position should be approximately in the range of the surface of the rigidbody. This is most commonly used for explosions. When applying explosions it is best to apply forces over several frames instead of just one. Note that when position is far away from the center of the rigidbody the applied torque will be unrealistically large.

力は、アクティブのリジッドボディにのみ適用することができます。ゲームオブジェクトが非アクティブの場合、AddForceAtPosition は効果がありません。

リジッドボディはデフォルトでスリープ状態から起き上がります。力のサイズが 0 の場合、リジッドボディはスリープのままです。

For more information on how ForceMode affects velocity, see Rigidbody.AddForce.

See Also: AddForce, AddRelativeForce, AddTorque.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void ApplyForce(Rigidbody body) { Vector3 direction = body.transform.position - transform.position; body.AddForceAtPosition(direction.normalized, transform.position); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961