如何制作一个Unity2D闯关游戏(五)
回顾
在上一篇的教程里我们给Player添加了手机动画和受击反馈,以及添加了KillPlane来防止玩家调出世界,然后又加入了的重生点系统以及Gem和Cherry,增添了游戏的可玩性。
开始第五天的制作
上一篇我们增加了玩家的受伤反馈,但是一般的闯关游戏还会再添加一个无敌时间来保证玩家的游戏性。
添加无敌时间
我们打开 PlayerHealthController 脚本,我们无敌时间的功能在这里面来添加新的代码。
首先我们先添加两行定义,分别是无敌时间以及计数器,还需要一个SpriteRenderer,通过修改透明度来表示是否处于无敌状态。
1 2 3
| private readonly float invincibleTime =0.5f; private float invincibleCounter; private SpriteRenderer spriteRenderer;
|
然后我们需要再 DealDamage 函数里把无敌时间赋值给计数器。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| public void DealDamage(int damage) { if(invincibleCounter<=0) { if (currentHealth <= 0) { } else { invincibleCounter = invincibleTime; var color = spriteRenderer.color; spriteRenderer.color = new Color(color.r, color.g, color.b, 0.5f); PlayerController.instance.KnockBack(); } } }
|
然后计数器部分的代码在Update函数里面。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| private void Update() { if (invincibleCounter >= 0) { invincibleCounter -= Time.deltaTime; if (invincibleCounter <= 0) { var color = spriteRenderer.color; spriteRenderer.color = new Color(color.r, color.g, color.b, 1f); } } }
|
添加拾取特效
在资源包 “\2D Platformer Assets\Graphics\Collectibles” 路径下找到 Collect_Effect 素材。然后按照之前的之前的方法创建拾取特效。
我们在最后两帧将SpriteRenderer取消勾选。

添加死亡特效
素材路径以及设置方法同上。

创建特效消失脚本
我们创建一个名为 DestoryOverTime 的脚本,将其挂载在两个特效上。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| using System; using System.Collections; using System.Collections.Generic; using UnityEngine;
public class DestroyOverTime : MonoBehaviour { public float lifeTime;
private void Update() { Destroy(gameObject,lifeTime); } }
|
将拾取特效的lifetime设置为0.5,死亡特效的lifetime设置为0.75,设置完之后把两个特效制成预设体。
在游戏中添加特效
接下来我们先去到 Pickup 脚本里,添加生成特效脚本。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| public GameObject effects;
private void OnTriggerEnter2D(Collider2D other) { if (!other.CompareTag("Player")) return; if (isGem) { Instantiate(effects, transform.position, transform.rotation);
Destroy(gameObject); } else if (isHeal && PlayerHealthController.instance.currentHealth!=PlayerHealthController.instance.maxHealth) { Instantiate(effects, transform.position, transform.rotation);
Destroy(gameObject); } }
|
然后再 PlayerHealthController 脚本的 DealDamage 函数里,在玩家死亡部分添加生成特效代码。
1 2 3 4 5
| public GameObject deathEffect;
Instantiate(deathEffect, transform.position, transform.rotation);
|
添加敌人
我们在素材中找到敌人Frog,首先我们需要一个空物体作为父物体,然后将Frog放在空物体下,将空物体命名为 FrogEnemy,添加 Rigidbody 2D 和 Box Collier 2D 组件。
然后继续按照之前的方法设置动画,动画组件是在FrogEnemy上,图像是其子物体。

这个动画应该有一定的间隔,所以我们在最后让他保持原状一定时间。
接下来给FrogSprite添加一个 Box Collier 2D,设置碰撞体大小。

然后调整碰撞体和图像位置一致。
在 Animator 窗口中添加一个bool类型的 isMoving
接着我们创建两个空物体,分别作为Frog移动的两个端点,设置好位置之后将这两个空物体放入FrogEnemy下。



以上为两个物体上的组件。
编写敌人移动脚本
在制作完敌人模型之后,接下来就是添加敌人的移动逻辑。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
| using System.Collections; using System.Collections.Generic; using UnityEngine;
public class EnemyController : MonoBehaviour { public float moveSpeed; public Transform leftPoint, rightPoint; private bool movingRight=true;
private Rigidbody2D rbody; private Animator anim; private SpriteRenderer spriteRenderer; private static readonly int IsMoving = Animator.StringToHash("isMoving");
public float moveTime, waitTime; private float moveCount, waitCount;
void Start() { rbody = GetComponent<Rigidbody2D>(); spriteRenderer = transform.GetChild(0).gameObject.GetComponent<SpriteRenderer>(); anim = GetComponent<Animator>();
leftPoint.parent = null; rightPoint.parent = null; moveCount = moveTime; }
void Update() { if(moveCount>0) { anim.SetBool(IsMoving,true); moveCount -= Time.deltaTime; if (movingRight) { rbody.velocity = new Vector2(moveSpeed, rbody.velocity.y);
if (transform.position.x > rightPoint.position.x) { movingRight = false; spriteRenderer.flipX = false; } } else { rbody.velocity = new Vector2(-moveSpeed, rbody.velocity.y);
if (transform.position.x < leftPoint.transform.position.x) { movingRight = true; spriteRenderer.flipX = true; } }
if (moveCount <= 0) { waitCount =Random.Range(waitTime*0.75f,waitTime*1.25f) ; } } else if(waitCount>0) { anim.SetBool(IsMoving,false); waitCount -= Time.deltaTime; rbody.velocity = new Vector2(0f, rbody.velocity.y);
if (waitCount <= 0) { moveCount =Random.Range(moveTime*0.75f,moveTime*1.25f) ; } } } }
|
最后给FrogEnemy挂载DamagePlayer脚本,使Frog具有对玩家造成伤害的功能。
总结
本篇完善了角色的受伤是的一些反馈内容,增加了游戏特效,新增了新的敌人,增加了游戏的可玩性。