使用 RigidBody

什么是刚体?

A rigid body is one that is directly controlled by the physics engine in order to simulate the behavior of physical objects. In order to define the shape of the body, it must have one or more Shape3D objects assigned. Note that setting the position of these shapes will affect the body’s center of mass.

如何控制刚体

A rigid body’s behavior can be altered by setting its properties, such as mass and weight. A physics material needs to be added to the rigid body to adjust its friction and bounce, and set if it’s absorbent and/or rough. These properties can be set in the Inspector or via code. See RigidBody3D and PhysicsMaterial for the full list of properties and their effects.

有几种方法可以控制刚体的运动, 这取决于你的应用程序.

If you only need to place a rigid body once, for example to set its initial location, you can use the methods provided by the Node3D node, such as set_global_transform() or look_at(). However, these methods cannot be called every frame or the physics engine will not be able to correctly simulate the body’s state. As an example, consider a rigid body that you want to rotate so that it points towards another object. A common mistake when implementing this kind of behavior is to use look_at() every frame, which breaks the physics simulation. Below, we’ll demonstrate how to implement this correctly.

你不能使用 set_global_transform()look_at() 方法并不意味着你不能完全控制一个刚体. 相反, 你可以通过使用 _integrate_forces() 回调来控制它. 在这个方法中, 你可以添加 , 应用 冲量 , 或者设置 速度 , 以实现你想要的任何运动.

“look at”方法

As described above, using the Node3D’s look_at() method can’t be used each frame to follow a target. Here is a custom look_at() method called look_follow() that will work with rigid bodies:

GDScriptC#

  1. extends RigidBody3D
  2. var speed: float = 0.1
  3. func look_follow(state: PhysicsDirectBodyState3D, current_transform: Transform3D, target_position: Vector3) -> void:
  4. var forward_local_axis: Vector3 = Vector3(1, 0, 0)
  5. var forward_dir: Vector3 = (current_transform.basis * forward_local_axis).normalized()
  6. var target_dir: Vector3 = (target_position - current_transform.origin).normalized()
  7. var local_speed: float = clampf(speed, 0, acos(forward_dir.dot(target_dir)))
  8. if forward_dir.dot(target_dir) > 1e-4:
  9. state.angular_velocity = local_speed * forward_dir.cross(target_dir) / state.step
  10. func _integrate_forces(state):
  11. var target_position = $my_target_node3d_node.global_transform.origin
  12. look_follow(state, global_transform, target_position)
  1. using Godot;
  2. public partial class MyRigidBody3D : RigidBody3D
  3. {
  4. private float _speed = 0.1f;
  5. private void LookFollow(PhysicsDirectBodyState3D state, Transform3D currentTransform, Vector3 targetPosition)
  6. {
  7. Vector3 forwardLocalAxis = new Vector3(1, 0, 0);
  8. Vector3 forwardDir = (currentTransform.Basis * forwardLocalAxis).Normalized();
  9. Vector3 targetDir = (targetPosition - currentTransform.Origin).Normalized();
  10. float localSpeed = Mathf.Clamp(_speed, 0.0f, Mathf.Acos(forwardDir.Dot(targetDir)));
  11. if (forwardDir.Dot(targetDir) > 1e-4)
  12. {
  13. state.AngularVelocity = forwardDir.Cross(targetDir) * localSpeed / state.Step;
  14. }
  15. }
  16. public override void _IntegrateForces(PhysicsDirectBodyState3D state)
  17. {
  18. Vector3 targetPosition = GetNode<Node3D>("MyTargetNode3DNode").GlobalTransform.Origin;
  19. LookFollow(state, GlobalTransform, targetPosition);
  20. }
  21. }

This method uses the rigid body’s angular_velocity property to rotate the body. The axis to rotate around is given by the cross product between the current forward direction and the direction one wants to look in. The clamp is a simple method used to prevent the amount of rotation from going past the direction which is wanted to be looked in, as the total amount of rotation needed is given by the arccosine of the dot product. This method can be used with axis_lock_angular_* as well. If more precise control is needed, solutions such as ones relying on Quaternion may be required, as discussed in 使用 3D 变换.

Previous Next


© 版权所有 2014-present Juan Linietsky, Ariel Manzur and the Godot community (CC BY 3.0). Revision b1c660f7.

Built with Sphinx using a theme provided by Read the Docs.