跳跃与踩扁怪物

在这一部分中,我们将添加跳跃、踩扁怪物的能力。在下一节课中,我们会让怪物在地面上击中玩家时让玩家死亡。

首先我们要修改一些物理交互相关的设置。请进入物理层的世界。

控制物理交互

物理实体可以访问两个互补的属性:层和遮罩。层(Layer)定义的是该对象位于哪些物理层上。

遮罩(Mask)控制的是该实体会监听并检测的层,会影响碰撞检测。希望两个实体能够发生交互时,你需要让其中至少一个的遮罩与另一个(的层)相对应。

可能有点绕,但请别担心,我们马上就会看到三个例子。

重要的知识点是,你能够使用层和遮罩来过滤物理交互、控制性能、让代码中不需要再做额外的条件检测。

默认情况下,所有物理体和区域的层和遮罩都被设成了 1。也就是说它们会互相碰撞。

物理层由数字表示,但我们也可以为它们命名,记录什么是什么。

设置层名称

让我们来为物理层命名。打开项目 -> 项目设置

image0

在左侧的菜单中,找到 Layer Names -> 3D Physics(层名称 -> 3D 物理)。你可以在右侧看到层的列表,每一层右侧都有一个字段,可以用来设置名称。将前三层分别命名为“player”“enemies”“world”(玩家、敌人、世界)。

image1

现在,我们就可以将它们分配给我们的物理节点了。

层和遮罩的分配

Main 场景中选中 Ground 节点。在检查器中展开 Collision(碰撞)部分。你可以看到,该节点的层和遮罩在这里以按钮网格的形式排列。

image2

地面是世界的一部分,所以我们希望它属于第三层。点击 Layer 中的第一个点亮的按钮将其关闭打开第三层。然后点击关闭 Mask

image3

上面说到过,Mask 属性可以让节点监听与其他物理对象的交互,但它不是实现碰撞所必须的。Ground 不需要监听任何东西;它存在的意义是防止生物下落。

请注意,点击右侧的“…”按钮会将该属性以带名称的复选框的形式展示。

image4

接下来就是 PlayerMob。在文件系统面板中双击打开 player.tscn 文件。

选中 Player 节点,将其 Collision -> Mask 设为“enemies”和“world”。Layer 属性可以保持默认,因为第一个层就是“player”层。

image5

然后双击 mob.tscn 打开 Mob 场景,选中 Mob 节点。

将其 Collision -> Layer 设为“enemies”,然后取消 Collision -> Mask 的设置,让遮罩为空。

image6

这些设置意味着怪物可以互相穿越。如果你希望怪物之间会发生碰撞和滑动,请打开“enemies”遮罩。

备注

小怪并不需要遮罩“world”层,因为它们只会沿着 XZ 平面移动。我们是故意不去为它们添加重力影响的。

跳跃

跳跃机制本身只需要两行代码。打开 Player 脚本。我们需要一个值来控制跳跃的强度,并更新 _physics_process() 来对跳跃进行编码。

在定义 fall_acceleration 这一行之后,在脚本的顶部,添加 jump_impulse

GDScriptC#

  1. #...
  2. # Vertical impulse applied to the character upon jumping in meters per second.
  3. @export var jump_impulse = 20
  1. // Don't forget to rebuild the project so the editor knows about the new export variable.
  2. // ...
  3. // Vertical impulse applied to the character upon jumping in meters per second.
  4. [Export]
  5. public int JumpImpulse { get; set; } = 20;

_physics_process() 内,请在调用 move_and_slide() 那块代码之前添加以下代码。

GDScriptC#

  1. func _physics_process(delta):
  2. #...
  3. # Jumping.
  4. if is_on_floor() and Input.is_action_just_pressed("jump"):
  5. target_velocity.y = jump_impulse
  6. #...
  1. public override void _PhysicsProcess(double delta)
  2. {
  3. // ...
  4. // Jumping.
  5. if (IsOnFloor() && Input.IsActionJustPressed("jump"))
  6. {
  7. _targetVelocity.Y = JumpImpulse;
  8. }
  9. // ...
  10. }

这就是跳跃所需的所有东西!

is_on_floor() 方法是来自 CharacterBody3D 类的工具。如果物体在这一帧中与地板发生碰撞返回 true。这就是为什么我们要对 Player 施加重力的原因:这样我们就会与地板相撞,而不是像怪物一样漂浮在地板上。

如果角色在地板上并且玩家按下跳跃,立即给予角色较大的垂直速度,因为在游戏中,玩家通常希望控制能得到响应,就像这样提供的即时速度提升,虽然不切实际,但会令玩家感觉很好。

请注意,Y 轴的正方向是朝上的。这与 2D 有所不同, 2D的Y 轴的正方向是朝下的。

踩扁怪物

接下来让我们来添加踩扁机制。我们会让玩家在怪物身上弹起,并同时消灭它们。

我们需要检测与怪物的碰撞,并和与地板的碰撞相区分。要这么做,我们可以使用 Godot 的分组标签功能。

再次打开 mob.tscn 场景,选中 Mob 节点,就能在右侧的Node面板中看到信号的列表。Node面板有两个选项卡:你已经使用过的Signals,以及Groups它允许你为节点添加标签。

单击这个选项卡就会出现一个输入框,可以填写标签的名称。在这个输入框中输入“mob”(小怪)并单击添加按钮。

image7

场景面板中会出现一个图标,表示该节点至少处在一个分组之中。

image8

我们现在就可以在代码中使用分组来区分与怪物的碰撞和与地板的碰撞了。

编写踩扁机制

回到 Player 脚本来编写踩扁和弹跳。

在脚本顶部,我们需要添加一个属性 bounce_impulse。踩扁敌人时,我们不必让角色弹得比跳跃一样高。

GDScriptC#

  1. # Vertical impulse applied to the character upon bouncing over a mob in
  2. # meters per second.
  3. @export var bounce_impulse = 16
  1. // Don't forget to rebuild the project so the editor knows about the new export variable.
  2. // Vertical impulse applied to the character upon bouncing over a mob in meters per second.
  3. [Export]
  4. public int BounceImpulse { get; set; } = 16;

然后,在 _physics_process() 中添加的 Jumping 代码块之后,添加以下循环。使用 move_and_slide() 时,Godot 有时会连续多次移动角色身体来平滑运动。因此,我们必须循环遍历所有可能发生的碰撞。

在循环的每次迭代中,我们会检查是否落在了小怪身上。如果是的话,我们就消灭它并进行弹跳。

如果某一帧没有发生碰撞,那么这段代码中的循环就不会执行。

GDScriptC#

  1. func _physics_process(delta):
  2. #...
  3. # Iterate through all collisions that occurred this frame
  4. for index in range(get_slide_collision_count()):
  5. # We get one of the collisions with the player
  6. var collision = get_slide_collision(index)
  7. # If the collision is with ground
  8. if collision.get_collider() == null:
  9. continue
  10. # If the collider is with a mob
  11. if collision.get_collider().is_in_group("mob"):
  12. var mob = collision.get_collider()
  13. # we check that we are hitting it from above.
  14. if Vector3.UP.dot(collision.get_normal()) > 0.1:
  15. # If so, we squash it and bounce.
  16. mob.squash()
  17. target_velocity.y = bounce_impulse
  18. # Prevent further duplicate calls.
  19. break
  1. public override void _PhysicsProcess(double delta)
  2. {
  3. // ...
  4. // Iterate through all collisions that occurred this frame.
  5. for (int index = 0; index < GetSlideCollisionCount(); index++)
  6. {
  7. // We get one of the collisions with the player.
  8. KinematicCollision3D collision = GetSlideCollision(index);
  9. // If the collision is with a mob.
  10. // With C# we leverage typing and pattern-matching
  11. // instead of checking for the group we created.
  12. if (collision.GetCollider() is Mob mob)
  13. {
  14. // We check that we are hitting it from above.
  15. if (Vector3.Up.Dot(collision.GetNormal()) > 0.1f)
  16. {
  17. // If so, we squash it and bounce.
  18. mob.Squash();
  19. _targetVelocity.Y = BounceImpulse;
  20. // Prevent further duplicate calls.
  21. break;
  22. }
  23. }
  24. }
  25. }

新函数很多。下面我们来进一步介绍一下。

函数 get_slide_collision_count()get_slide_collision() 都来自于 CharacterBody3D 类,他们与 move_and_slide() 有关。

get_slide_collision() 返回的是 KinematicCollision3D 对象,包含碰撞在哪里发生、如何发生等信息。例如,我们对它的 get_collider 属性调用 is_in_group() 来检查我们是否是和“mob”发生了碰撞:collision.collider.is_in_group("mob")

备注

每一个 Node 都可以使用 is_in_group() 方法。

我们使用向量点积 Vector3.UP.dot(collision.get_normal()) > 0.1 来检查我们是不是降落在怪物身上。碰撞法线(normal)是垂直于碰撞平面的 3D 向量。可以通过点积与上方向进行比较。

点积结果大于 0 时,两个向量的夹角小于 90 度。大于 0.1 表示我们大概位于怪物上方。

处理完踩扁和反弹逻辑后,我们通过 break 语句提前终止循环,以防止进一步重复调用 mob.squash() ,否则这可能会导致意外的错误,例如将一次击杀获得的分数算成好几倍。

我们调用了一个尚未定义的函数 mob.squash()。所以我们需要把它加入到 Mob 类中。

Open the script mob.gd by double-clicking on it in the FileSystem dock. At the top of the script, we want to define a new signal named squashed. And at the bottom, you can add the squash function, where we emit the signal and destroy the mob.

GDScriptC#

  1. # Emitted when the player jumped on the mob.
  2. signal squashed
  3. # ...
  4. func squash():
  5. squashed.emit()
  6. queue_free()
  1. // Don't forget to rebuild the project so the editor knows about the new signal.
  2. // Emitted when the player jumped on the mob.
  3. [Signal]
  4. public delegate void SquashedEventHandler();
  5. // ...
  6. public void Squash()
  7. {
  8. EmitSignal(SignalName.Squashed);
  9. QueueFree();
  10. }

备注

使用 C# 时,Godot 将为所有以 EventHandler 结尾的信号自动创建适当的事件,请参阅 C# 信号

下一节课中,我们会使用这个信号来加分数。

好了,你应该可以跳在怪物身上把它们消灭了。你可以按 F5 试玩游戏,并把 main.tscn 设成项目的主场景。

不过玩家现在还不会死。我们会在下一部分实现。