当前位置:   article > 正文

使用Unity制作一个横版闯关类游戏_unity横版游戏教程

unity横版游戏教程

一、关于场景搭建

Tilemap瓦片地图

1.先将一张贴图合集通过Sprite Mode从Single(单一图片)模式转变为Multiple(多张图片)模式以切割成为许多张小贴图入调色板当中,便可运用上方笔刷橡皮等制作一个简单的瓦片网格地图了。

2.在Hierarchy中创建2D project-Tilemap-rectangular创建网格地图

3.在windows中选择2D-tile palette创建一个New palette(新调色板)并将贴图合辑拖

二、关于玩家

1.玩家移动

        2D游戏的玩家移动很简单,只需要获取一个水平轴的输入即可,不过既然是横板游戏,那玩家必然分为朝左移动和朝右移动,因此,单单地获取轴的输入时远远不够的,我们还需要给玩家一个翻转方法,防止出现玩家向后行走的情况

  1. void Move()
  2. {
  3. float moveDir = Input.GetAxis("Horizontal");
  4. Vector2 playerVel = new Vector2(moveDir * moveSpeed, rb.velocity.y);
  5. rb.velocity = playerVel;
  6. if(Mathf.Abs(rb.velocity.x)>0)//水平移动速度的绝对值大于零
  7. {
  8. anim.SetBool("Run", true);
  9. if(rb.velocity.x > 0.0f)//速度大于零,向右移动
  10. {
  11. if(!isFacingRight)
  12. {
  13. Flip();//翻转
  14. }
  15. }
  16. else//速度小于零,向左移动
  17. {
  18. if(isFacingRight)
  19. {
  20. Flip();
  21. }
  22. }
  23. }
  24. else
  25. {
  26. anim.SetBool("Run", false);
  27. }
  28. }

        当我们调用Flip方法,说明移动方向和面朝方向不一致,首先要做的就是让移动方向和面朝方向一致,更改是否朝右的bool值。而更改朝向的方法也很简单,我们可以通过玩家的Transform里面的Scale来进行缩放,而当我们x轴的缩放数值由1变为-1,便能实现玩家的竖直翻转

  1. void Flip()
  2. {
  3. isFacingRight = !isFacingRight;
  4. Vector3 scale = transform.localScale;
  5. scale.x *= -1;
  6. transform.localScale = scale;
  7. }

2.玩家跳跃

        1.地面检测

       地面检测其实很简单,首先我们为玩家创建一个BoxCollider2D放在脚上用来检测是否和地面接触,这里记得要将其作为触发器,接着为我们的地面勾选上名为Ground的层,调用如下代码,便可以实现当脚触地时IsGround返回值为真,当检测不到脚和地接触则IsGround返回值为假,这个方法需要在Update()里面实现,以便一直检测是否在地面

  1. private BoxCollider2D myFeet;
  2. void CheckGround()
  3. {
  4. isGround = myFeet.IsTouchingLayers(LayerMask.GetMask("Ground"))
  5. }

        2.实现跳跃和二段跳

        跳跃的前提是玩家在地面上,不然玩家会直接升天

  1. void Jump()
  2. {
  3. if(Input.GetButtonDown("Jump") && !Input.GetKey(KeyCode.S))
  4. //这里是为了实现后续的功能才写下当不按下S时
  5. {
  6. if (isGround)
  7. {
  8. anim.SetBool("Jump", true);
  9. Vector2 jumpVel = new Vector2(0.0f, jumpSpeed);
  10. rb.velocity = Vector2.up * jumpVel;
  11. //给玩家一个向上的速度
  12. canDoubleJump = true;
  13. }
  14. else
  15. {
  16. if(canDoubleJump)
  17. {
  18. anim.SetBool("DoubleJump", true);
  19. Vector2 doublejumpVel = new Vector2(0.0f, doublejumpSpeed);
  20. rb.velocity = Vector2.up * doublejumpVel;
  21. //给玩家一个向上的二段跳速度
  22. canDoubleJump = false;
  23. }
  24. }
  25. }
  26. }

3.运动动画 

        1.动画的转换

        在Unity的动画控制器当中,大多都可以用Bool变量来改变动画,就如以上脚本的Run和Jump这需要我们在各个动画之间创建一条transition连线,同时创建一个bool变量,并更改其对应的发生方法,就例如当我想要从Idle动画转变为Run动画,我只需要在动画机连线内的Condition里将触发条件设为“Run true”即可实现        当我们在脚本中获取了动画机组件后,便可以在其中更改bool变量了

  1. anim = GetComponent<Animator>();
  2. //在Start方法中获取动画机组件
  3. anim.SetBool("Run", true);
  4. //将动画机中Run这个bool变量设置为true

2.跳跃与下落动画的切换

        我们都知道,在空中有两种情况,分别是向上跳和向下坠,但在上面的跳跃脚本中,我们只要不在地面就都是Jump的状态,这不是我们想要的,因此我们需要一个方法来区分我们在天上时究竟是上跳还是下坠

  1. void SwitchAnimation()
  2. {
  3. if(anim.GetBool("Jump"))//如果当前是Jump的状态
  4. {
  5. if(rb.velocity.y < 0.0f)
  6. {
  7. anim.SetBool("Jump",false);
  8. anim.SetBool("Fall",true);
  9. }
  10. }
  11. else if(isGround)
  12. {
  13. anim.SetBool("Fall", false);
  14. anim.SetBool("Idle",true );
  15. }
  16. if (anim.GetBool("DoubleJump"))
  17. {
  18. if (rb.velocity.y < 0.0f)
  19. {
  20. anim.SetBool("DoubleJump", false);
  21. anim.SetBool("DoubleFall", true);
  22. }
  23. }
  24. else if (isGround)
  25. {
  26. anim.SetBool("DoubleFall", false);
  27. anim.SetBool("Idle", true);
  28. }
  29. }

4.玩家攀爬

        1.攀爬检测

        这个只需要用跟地面一样的方法即可,不一样的是我们需要给可攀爬的地方选上一个Ladder(梯子)的层

  1. void CheckLadder()
  2. {
  3. isLadder = myFeet.IsTouchingLayers(LayerMask.GetMask("Ladder"));
  4. }

         除此之外,我们不希望玩家从天上掉下来后可以掉到梯子上,因此我们还需要为玩家的空中状态进行一个检测

  1. void CheckAirStatus()
  2. {
  3. isJumping = anim.GetBool("Jump");
  4. isFalling = anim.GetBool("Fall");
  5. isDoubleJumping = anim.GetBool("DoubleJump");
  6. isDoubleFalling = anim.GetBool("DoubleFall");
  7. isClimbing = anim.GetBool("Climbing");
  8. }

        2.实现攀爬

  1. playerGravity = rb.gravityScale;//定义一个玩家重力使其等于刚体的重力
  2. void Climb()
  3. {
  4. if(isLadder)
  5. {
  6. float MoveY = Input.GetAxis("Vertical");
  7. if(MoveY > 0.5f || MoveY < -0.5f)
  8. {
  9. anim.SetBool("Climbing", true);
  10. rb.gravityScale = 0.0f;//将玩家重力改为零便可以实现在梯子上悬停
  11. rb.velocity = new Vector2(rb.velocity.x , MoveY * climbSpeed);
  12. }
  13. else
  14. {
  15. if(isJumping || isFalling || isDoubleFalling || isDoubleJumping)
  16. //防止玩家以这几种情况接触到梯子也会悬停
  17. {
  18. anim.SetBool("Climbing", false);
  19. }
  20. else
  21. {
  22. anim.SetBool("Climbing",false);
  23. rb.velocity = new Vector2(rb.velocity.x, 0.0f);
  24. }
  25. }
  26. }
  27. else//未与梯子接触
  28. {
  29. anim.SetBool("Climbing", false);
  30. rb.gravityScale = playerGravity;
  31. }
  32. }

三、关于相机

1.相机跟随

      在先前的玩家移动脚本中,我们把Move方法放在了Update当中,我们希望相机跟随实现在玩家移动之后,因此我们将其写在LateUpdate方法当中,其代表着在Update方法的后一帧执行

  1. void LateUpdate()
  2. {
  3. if(target != null)
  4. {
  5. if(transform.position != target.position)
  6. {
  7. Vector3 targetPos = target.position;
  8. //定义目标位置
  9. transform.position = Vector3.Lerp(transform.position, targetPos, smoothTime);
  10. //让摄像机位置等于玩家位置,并差值一个到达的平滑时间
  11. }
  12. }
  13. }

2.限制相机移动范围

        首先在地图边界的左下角和右上角分别找到一个点的坐标来划定地图的边界,并将摄像机的x,y值的最大最小范围用Clamp方法来限制它的极值

  1. targetPos.x = Mathf.Clamp(targetPos.x, minPosition.x, maxPosition.x);
  2. targetPos.y = Mathf.Clamp(targetPos.y, minPosition.y, maxPosition.y)
  1. public void SetCameraPosLimit(Vector2 minPos,Vector2 maxPos)
  2. {
  3. //此处定义的两个二维向量即为两个极限位置的坐标63.
  4. minPosition = minPos;
  5. maxPosition = maxPos;
  6. }

         然后回到unity的界面在属性界面输入左下右上两个的边界点坐标即可

四、关于战斗

1.玩家攻击

        在我们的攻击动画当中,有一段为挥刀的动画,我们希望在动画播放到挥刀的时候,出现一个可以检测刀体碰撞的碰撞体,因此我们需要用到一个携程来让刀碰撞体延后出现

  1. anim = GameObject.FindGameObjectWithTag("Player").GetComponent<Animator>();
  2. void Start()
  3. {
  4. anim = GameObject.FindGameObjectWithTag("Player").GetComponent<Animator>();
  5. attackCollider = GetComponent<PolygonCollider2D>();
  6. //在这里获取到挂载当前脚本的刀光所携带的碰撞体
  7. attackCollider.enabled = false;
  8. }
  9. void Update()
  10. {
  11. Attack();
  12. }
  13. void Attack()
  14. {
  15. if(Input.GetButtonDown("Attack"))
  16. //其中这个Attack我们只需要去到Project Setting中创建
  17. {
  18. anim.SetTrigger("Attack");
  19. StartCoroutine(startAttackBox());
  20. }
  21. }
  22. IEnumerator startAttackBox()
  23. {
  24. yield return new WaitForSeconds(startTime);
  25. attackCollider.enabled = true;
  26. StartCoroutine(disableAttackBox());
  27. }
  28. IEnumerator disableAttackBox()
  29. {
  30. yield return new WaitForSeconds(endTime);
  31. attackCollider.enabled = false;
  32. }
  33. //通过以上两个协程来划定碰撞框的出现和消失时间
  34. void OnTriggerEnter2D(Collider2D other)
  35. {
  36. if(other.gameObject.CompareTag("Enemy"))
  37. {
  38. other.GetComponent<Enemy>().TakeDamage(damage);
  39. }
  40. }

         我们为玩家物体创建一个子物体(如下图)作为玩家的攻击检测,其中找到玩家挥刀的那几帧(这里只需要打开Animation面板并选择Player找到其中的Attack动画即可对其进行编辑),并为显示出来的刀添加一个多边形碰撞体,这便是我们所需要的刀碰撞体检测,只有在挥刀的时候才出现该碰撞体,可以有效防止当玩家移动时即使没挥刀,刀碰到敌人也会造成伤害这一情况发生

2.敌人受伤

        首先,关于敌人,敌人可以有很多种,例如蝙蝠、史莱姆、吸血鬼什么的,它们种类繁多,但都与共同的属性,比如受击掉血,攻击玩家,血空死亡等,因此,先创建一个“敌人”的父类是很有必要的,这有利于我们后面不同的敌人都可以继承父类中敌人的相同属性

1.受伤动画与掉血动画

        很明显,受伤动画与掉血动画是每一个敌人的共有属性,因此,把这个放入敌人父类再合适不过了

  1. public int damage;
  2. public float flashTime;
  3. public GameObject bloodEffect;
  4. public GameObject dropCoin;
  5. public GameObject floatPoint;
  6. private SpriteRenderer sr;
  7. private Color originalColor;
  8. private PlayerHealth playerHealth;
  9. public void TakeDamage(int damage)
  10. {
  11. FlashColor(flashTime);//让敌人闪烁
  12. health -= damage;
  13. Instantiate(bloodEffect,transform.position,Quaternion.identity);
  14. //出现掉血特效
  15. }
  16. public void Start()
  17. {
  18. sr = GetComponent<SpriteRenderer>();
  19. originalColor = sr.color;
  20. }
  21. void FlashColor(float time)
  22. {
  23. sr.color = Color.red;
  24. Invoke("ResetColor", time);
  25. }
  26. void ResetColor()
  27. {
  28. sr.color = originalColor;
  29. }

        其中,sr就是物体贴图的<SpriteRenderer>组件,我们可以在其中调节物体的颜色,相关的玩家攻击敌人的代码在刚才已经写过了,就在PlayerAttack脚本当中,如下

  1. void OnTriggerEnter2D(Collider2D other)
  2. {
  3. if(other.gameObject.CompareTag("Enemy"))
  4. {
  5. other.GetComponent<Enemy>().TakeDamage(damage);
  6. }
  7. }

        这样一来,就完成了两个脚本间的联动,玩家的刀光碰撞体触碰到敌人就会触发Enemy脚本当中的TakeDamage()方法,并执行相应的操作

        那么,完成了敌人受伤变红一下的动画,接着就该是掉血动画了,这里我们要用到Unity的粒子系统,Particle System,我们在敌人身上创建一个空物体,并添加上粒子组件,调整适当的颜色和效果,这里以我自己的效果为例子

        这便是先前代码中出现的BloodEffect,将其作为一个预制体,在触发攻击方法的时候实例化即可。与粒子效果相关的效果我会再出一篇相关文章,这里就不再赘述

2.玩家命中震动

        震动的本质其实就是为摄像机添加一个位移动画,这里为方便演示,只作最基础的震动效果

        我们创建一个camera的动画机,并创建一个idle状态,这是正常情况下的摄像机,此外,我们再新建一个摄像机震动的动画,名为CameraShake,并附上Trigger类型的Shake变量

        后续的操作也不难,我们打开Camera的Animation,并调整到CameraShake动画当中,如图每隔一定时间Add Key,也就是右键添加关键帧,分别在每一个关键帧当中都对摄像机的Transform进行一个微小的改动,就如图所示,在我的示例当中,第一个关键帧不动,第二个关键帧x变为-0.1,第三个关键帧回到原点,第四个关键帧x变为0.1,这里不需要第五个关键帧,是因为当我的Shake动画播放完后,会回到Idle动画,也就是默认状态

  1. public Animator cameraAnim;
  2. public void Shake()
  3. {
  4. cameraAnim.SetTrigger("Shake");
  5. }

        剩下的也很简单,给Camera创建一个CameraShake子物体,挂载以上脚本,然后回到我们的敌人脚本中的伤害方法,添加如下代码即可,

GameController.camShake.Shake();

        其中GameController是为了把camShake变为一个静态的方法以直接用类名点出使用,并回到相机跟随脚本的Start方法进行声明

  1. GameController.camShake = GameObject.FindGameObjectWithTag("CameraShake").GetComponent<CameraShake>();
  2. //以上为在CameraFollow中的代码
  3. //这样一来,我们可以直接在其他脚本当中直接调用GameController.camShake了
  4. public class GameController : MonoBehaviour
  5. {
  6. public static CameraShake camShake;
  7. }

3.敌人简单AI

        那么我们现在为我们场景中的蝙蝠创建一个脚本以控制其行为,当然,我们需要先让其继承自己的父类,以便获取Enemy脚本当中的一些属性

        在这里我们所要做的简单AI,其实是让蝙蝠在我们划定的区域里随机飞行

  1. public class EnemyBat : Enemy
  2. {
  3. public float speed;
  4. public float startWaitTime;//等待总时长
  5. private float waitTime;//飞到目标位置后的当前等待时间
  6. public Transform movePos;
  7. //飞行终点坐标
  8. public Transform leftDownPos;
  9. public Transform rightUpPos;
  10. //在场景中的两个空物体:划定蝙蝠飞行范围的边界
  11. public new void Start()//父类已经有了Start方法,因此这里需要关键字new修饰,Update同理
  12. {
  13. base.Start();
  14. waitTime = startWaitTime;
  15. movePos.position = GetRandomPos();
  16. }
  17. public new void Update()
  18. {
  19. base.Update();
  20. transform.position = Vector2.MoveTowards(transform.position, movePos.position, speed * Time.deltaTime);
  21. //前往终点坐标
  22. if(Vector2.Distance(transform.position, movePos.position) < 0.1f)//两点间距离
  23. {
  24. //这是为了让蝙蝠可以在空中停留一段时间
  25. if(waitTime <= 0)
  26. {
  27. movePos.position = GetRandomPos();
  28. waitTime = startWaitTime;
  29. }
  30. else
  31. {
  32. waitTime -= Time.deltaTime;
  33. }
  34. }
  35. Flip();//这个是之前写过的翻转方法
  36. }
  37. Vector2 GetRandomPos()//获取一个随机坐标
  38. {
  39. Vector2 randomPos = new Vector2(Random.Range(leftDownPos.position.x,rightUpPos.position.x),Random.Range(leftDownPos.position.y,rightUpPos.position.y));
  40. //在范围内寻找一个随机的x,y值作为飞行终点坐标
  41. return randomPos;
  42. }
  43. void Flip()
  44. //根据判断终点坐标在当前坐标的左侧或右侧决定是否进行翻转
  45. {
  46. if(movePos.position.x - transform.position.x < 0)
  47. {
  48. Vector3 scale = transform.localScale;
  49. scale.x = -3;
  50. transform.localScale = scale;
  51. }
  52. else if (movePos.position.x - transform.position.x > 0)
  53. {
  54. Vector3 scale = transform.localScale;
  55. scale.x = 3;
  56. transform.localScale = scale;
  57. }
  58. }
  59. }

4.攻击伤害浮动

        在我们玩过的许多游戏中,当我们攻击敌人,屏幕上就会浮现出我们造成的伤害数值

       

        同样的,我们先创建空物体,附上动画机和新建一个伤害浮动动画,并添加上Mesh Renderer和Text Mesh组件,在其中写下我们造成的伤害数值,最后让动画中数字由下至上,由大至小。将其作为预制体,并在对敌人造成伤害时调用

Instantiate(floatPoint, transform.position, Quaternion.identity);

        最后创建一个脚本规定数值消失的时间即可 

  1. void Start()
  2. {
  3. Destroy(gameObject, destoryTime);
  4. }

5.击败敌人爆金币

        在先前的脚本当中,我们已经定义了敌人的血量,只需回到Enemy脚本中添加一个判断即可

  1. public void Update()
  2. {
  3. if (health <= 0)
  4. {
  5. Instantiate(dropCoin, transform.position, Quaternion.identity);
  6. Destroy(gameObject);
  7. }
  8. }

6.玩家受伤与死亡

  1. public class PlayerHealth : MonoBehaviour
  2. {
  3. public int health;
  4. public float hitBoxCDTime;
  5. private Animator anim;
  6. private PolygonCollider2D polygonCollider2D;
  7. //这里为玩家添加一个多边形碰撞体专门用来检测受击
  8. void Start()
  9. {
  10. HealthBar.maxHealth = health;
  11. HealthBar.currentHealth = health;
  12. anim = GetComponent<Animator>();
  13. polygonCollider2D = GetComponent<PolygonCollider2D>();
  14. }
  15. public void DamagePlayer(int damage)
  16. {
  17. health -= damage;
  18. if(health < 0)
  19. {
  20. health = 0;
  21. }
  22. HealthBar.currentHealth = health;
  23. if(health <= 0)
  24. {
  25. anim.SetTrigger("Die");
  26. Destroy(gameObject,1.0f);
  27. }
  28. anim.SetTrigger("Hurt");
  29. }
  30. }

        以上的DamagePlayer脚本也是与Enemy中的碰撞方法相对应

  1. private void OnTriggerEnter2D(Collider2D other)
  2. {
  3. if (other.gameObject.CompareTag("Player") && other.GetType().ToString() == "UnityEngine.CapsuleCollider2D")
  4. //设定目标为玩家的多边形碰撞体
  5. //如果只设置为玩家的话,玩家有多个碰撞体,会造成多次伤害
  6. {
  7. if (playerHealth != null)
  8. {
  9. playerHealth.DamagePlayer(damage);
  10. }
  11. }
  12. }

7.玩家血条

  1. public class HealthBar : MonoBehaviour
  2. {
  3. public Text healthText;
  4. public static int currentHealth;
  5. public static int maxHealth;
  6. private Image healthBar;
  7. void Start()
  8. {
  9. healthBar = GetComponent<Image>();
  10. }
  11. public void Update()
  12. {
  13. healthBar.fillAmount = (float)currentHealth / maxHealth;
  14. //这里利用Image组件中的fill方法来进行血条的填充
  15. healthText.text = currentHealth.ToString() + "/" + maxHealth.ToString();
  16. }
  17. }

8.敌人追击玩家

        

  1. public class EnemySmartBat : Enemy
  2. {
  3. public float speed;
  4. public float radius;
  5. private Transform playerTransform;
  6. public void Start()
  7. {
  8. base.Start();
  9. playerTransform = GameObject.FindGameObjectWithTag("Player").GetComponent<Transform>();
  10. //获取玩家位置
  11. }
  12. void Update()
  13. {
  14. base.Update();
  15. if(playerTransform != null)
  16. {
  17. float distance = (transform.position - playerTransform.position).magnitude;
  18. //magnitude是为了获取两个向量相减后的向量的长度
  19. if(distance < radius)//进入攻击范围
  20. {
  21. transform.position = Vector2.MoveTowards(transform.position,playerTransform.position,Time.deltaTime);
  22. //追击
  23. }
  24. }
  25. Flip();
  26. }
  27. void Flip()//与先前同样的翻转方法
  28. {
  29. if (playerTransform != null)
  30. {
  31. if (playerTransform.position.x - transform.position.x < 0)
  32. {
  33. Vector3 scale = transform.localScale;
  34. scale.x = -3;
  35. transform.localScale = scale;
  36. }
  37. else if (playerTransform.position.x - transform.position.x > 0)
  38. {
  39. Vector3 scale = transform.localScale;
  40. scale.x = 3;
  41. transform.localScale = scale;
  42. }
  43. }
  44. }
  45. }

五、关于场景交互

1.实现毒气池

  1. //该方法置于PlayerHealth脚本中,与受到敌人攻击共用一个多边形碰撞体
  2. public void PosionDamagePlayer(int damage)
  3. {
  4. health -= damage;
  5. if (health < 0)
  6. {
  7. health = 0;
  8. }
  9. HealthBar.currentHealth = health;
  10. if (health <= 0)
  11. {
  12. anim.SetTrigger("Die");
  13. Destroy(gameObject, 2.0f);
  14. }
  15. anim.SetTrigger("Hurt");
  16. polygonCollider2D.enabled = false;
  17. StartCoroutine(ShowPlayerHitBox());
  18. }
  19. IEnumerator ShowPlayerHitBox()
  20. {
  21. yield return new WaitForSeconds(hitBoxCDTime);
  22. polygonCollider2D.enabled = true;
  23. }
  24. //使用该协程是为防止玩家一下就被毒死
  25. //正常情况下玩家都是隔一段时间才被毒一次
  1. public class Posion : MonoBehaviour
  2. {
  3. public int damage;
  4. private PlayerHealth playerHealth;
  5. void Start()
  6. {
  7. playerHealth = GameObject.FindGameObjectWithTag("Player").GetComponent<PlayerHealth>();
  8. }
  9. void OnTriggerEnter2D(Collider2D other)
  10. {
  11. if (other.CompareTag("Player") && other.GetType().ToString() == "UnityEngine.PolygonCollider2D")
  12. {
  13. playerHealth.PosionDamagePlayer(damage);
  14. }
  15. }

2.实现漂浮平台

  1. public class MovePlatform : MonoBehaviour
  2. {
  3. public float speed;
  4. public float waitTime;
  5. public Transform[] movePos;
  6. //定义一个位置数组,用以存放漂浮平台的移动目标点
  7. private int i = 1;
  8. private Transform transformOfPlayer;
  9. void Start()
  10. {
  11. transformOfPlayer = GameObject.FindGameObjectWithTag("Player").transform.parent;
  12. 找到Player标签物体的父物体,因为我们创建了一个Player空物体其子物体才是我们的Player本体
  13. }
  14. void Update()
  15. {
  16. transform.position = Vector2.MoveTowards(transform.position, movePos[i].position, speed * Time.deltaTime);
  17. //控制漂浮平台在两个点之间移动
  18. if(Vector2.Distance(transform.position, movePos[i].position) < 0.1f)
  19. //这是跟蝙蝠一样的等待方法
  20. {
  21. if(waitTime < 0.0f)
  22. {
  23. if(i == 0)
  24. {
  25. i = 1;
  26. }
  27. else
  28. {
  29. i = 0;
  30. }
  31. waitTime = 0.5f;
  32. }
  33. else
  34. {
  35. waitTime -= Time.deltaTime;
  36. }
  37. }
  38. }
  39. private void OnTriggerEnter2D(Collider2D other)
  40. {
  41. if (other.CompareTag("Player") && other.GetType().ToString() == "UnityEngine.BoxCollider2D")
  42. //检测玩家脚底的碰撞箱
  43. {
  44. other.gameObject.transform.parent = gameObject.transform;
  45. //将玩家作为平台的子物体以达到玩家和平台一起移动的效果
  46. }
  47. }
  48. private void OnTriggerExit2D(Collider2D other)
  49. {
  50. if (other.CompareTag("Player") && other.GetType().ToString() == "UnityEngine.BoxCollider2D")
  51. {
  52. other.gameObject.transform.parent = transformOfPlayer;
  53. //取消父子关系
  54. }
  55. }
  56. }

3.实现单向跳跃平台

        这个只需要用到unity的一个小组件,勾选其中的Use One Way便能达到单向跳跃的效果

        想要运用这个组件还需要在碰撞体组件中勾选Use By Effector

        而想要让玩家从单向跳跃平台中落下,只要将玩家的层和平台的层一致即可,这样一来,它们便不会发生碰撞,我们回到PlayerController脚本当中

  1. void OneWayPlatformCheck()
  2. {
  3. if(isOneWayPlatform)
  4. {
  5. if (Input.GetKey(KeyCode.S) && Input.GetButtonDown("Jump"))
  6. {
  7. gameObject.layer = LayerMask.NameToLayer("OneWayPlatform");
  8. anim.SetBool("Idle", false);
  9. anim.SetBool("Fall", true);
  10. Invoke("RestorePlayerLayer", restoreTime);
  11. //Invoke:稍后执行该方法
  12. }
  13. }
  14. }
  15. void RestorePlayerLayer()
  16. {
  17. if(!isGround && gameObject.layer != LayerMask.NameToLayer("Player"))
  18. {
  19. gameObject.layer = LayerMask.NameToLayer("Player");
  20. }
  21. }

4.实现捡起掉落物

捡起金币

注意我们需要两个碰撞箱,一个用来检测是否被玩家捡到,另一个则用以跟地面碰撞防止穿模

  1. public class CoinItem : MonoBehaviour
  2. {
  3. private void OnTriggerEnter2D(Collider2D other)
  4. {
  5. if (other.gameObject.CompareTag("Player") && other.GetType().ToString() == "UnityEngine.CapsuleCollider2D")
  6. {
  7. CoinUI.currentCoinQuantity += 1;
  8. Destroy(gameObject);
  9. }
  10. }
  11. }

金币UI

  1. public class CoinUI : MonoBehaviour
  2. {
  3. public int startCoinQuantity;
  4. public Text coinQuantity;
  5. public static int currentCoinQuantity;
  6. void Start()
  7. {
  8. currentCoinQuantity = startCoinQuantity;
  9. }
  10. void Update()
  11. {
  12. coinQuantity.text = currentCoinQuantity.ToString();
  13. }
  14. }

5.实现告示牌

这也很简单,只需要为告示牌添加一个触发器

  1. public class Sign : MonoBehaviour
  2. {
  3. public GameObject DialogBox;
  4. public Text dialogBoxText;
  5. public string signText;
  6. private bool isEnter;
  7. void Update()
  8. {
  9. if(Input.GetKeyDown(KeyCode.E) && isEnter)
  10. {
  11. dialogBoxText.text = signText;
  12. DialogBox.SetActive(true);
  13. }
  14. }
  15. void OnTriggerEnter2D(Collider2D other)
  16. {
  17. if(other.gameObject.CompareTag("Player") && other.GetType().ToString()=="UnityEngine.CapsuleCollider2D")
  18. {
  19. isEnter = true;
  20. }
  21. }
  22. void OnTriggerExit2D(Collider2D other)
  23. {
  24. if (other.gameObject.CompareTag("Player") && other.GetType().ToString() == "UnityEngine.CapsuleCollider2D")
  25. {
  26. isEnter = false;
  27. DialogBox.SetActive(false);
  28. }
  29. }
  30. }

6.实现风场

风场无需代码,仅仅需要一个组件

        将力的角度设为90,大小为30,勾选碰撞体的Use By Effector便可以达到当玩家与碰撞体接触后便会触发Effector后受到一个方向竖直向上,大小为30N的力的效果

六、关于游戏

1.场景切换

无需多言

核心代码:

SceneManager.LoadScene("场景名字");

        其中需要在Building Setting中拖入场景以确保可以转跳,在代码前需要引用命名空间

        using UnityEngine.SceneManagement;

2.游戏菜单

  1. public class PauseMenu : MonoBehaviour
  2. {
  3. public static bool gameIsPaused = false;
  4. public GameObject PauseMenuUI;
  5. void Update()
  6. {
  7. if(Input.GetKeyDown(KeyCode.Escape))
  8. {
  9. if(gameIsPaused)
  10. {
  11. Resume();
  12. }
  13. else
  14. {
  15. Pause();
  16. }
  17. }
  18. }
  19. public void Resume()
  20. {
  21. PauseMenuUI.SetActive(false);
  22. Time.timeScale = 1.0f;
  23. gameIsPaused = false;
  24. }
  25. public void Pause()
  26. {
  27. PauseMenuUI.SetActive(true);
  28. Time.timeScale = 0.0f;
  29. gameIsPaused = true;
  30. }
  31. }

        再为按钮添加点击事件即可完成

——————————————————————————————————————————

此文章为根据该视频教学进行的归纳总结https://www.bilibili.com/video/BV1sE411L7kV/?spm_id_from=333.999.0.0

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/146293
推荐阅读
相关标签
  

闽ICP备14008679号