简体   繁体   English

Unity3D 射手 - 所有敌人被摧毁后如何切换到下一个级别?

[英]Unity3D Shooter - How to switch to next level after all enemies get destroyed?

I am a newbie to Unity and I am trying to build a little shooter 2d game in C#.我是 Unity 的新手,我正在尝试在 C# 中构建一个小型射击 2d 游戏。 I am now stuck and confess that I am a little lost not knowing what the best approach is, but the problem is that my hero shoots at the enemies and they die but how do I get to the next level after the enemies are all dead?我现在卡住了,承认我有点迷茫,不知道最好的方法是什么,但问题是我的英雄向敌人开枪,他们死了,但是在敌人都死了之后我怎么才能进入下一个关卡呢? If I make a dead counter, what script do I put in?如果我做一个死计数器,我应该输入什么脚本? In the enemy script?在敌人脚本中? Or do I make a new script but associate it with what?或者我是否制作了一个新脚本但将其与什么相关联? I also need the game to end if the hero fires his six bullets (already have a counter that makes the hero not shoot anymore after six shoots) and there are still enemies left... Does anyone give me some tips?如果英雄发射了六发子弹(已经有一个计数器可以让英雄在六发后不再射击)并且仍然有敌人离开,我还需要结束游戏......有人给我一些提示吗? Thanks!谢谢!

Enemy script:敌人脚本:

  using System.Collections.Generic;
  using UnityEngine;

  public class BadguyScript : MonoBehaviour
  {
      public int maxHealth;
      public int curHealth;
      private Animator myAnimator;
      private bool isDead;
      [SerializeField]
      private float DespawnTime = 2.5f;
      [SerializeField]
      private string DeathAnimHash = "isDead"; 

      void Start()
      {
          myAnimator = GetComponent<Animator>();
          myAnimator.enabled =true;
          myAnimator.SetBool (DeathAnimHash ,isDead);


          maxHealth = 1;
          curHealth = maxHealth;

      }
      void Update()
      {
          if (curHealth < 1)
          {
              isDead = true;
              myAnimator.SetBool (DeathAnimHash ,isDead);
              Destroy(gameObject,DespawnTime);
          }
      }
      void OnTriggerEnter2D(Collider2D col)
      {
          if (isDead)
             return;
          if (col.tag == "bullet")
          {
              curHealth -= 1;
              Destroy(col.gameObject);
          }
      }
  }

Count Bullets Script:计数子弹脚本:

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;

public class GameFlow : MonoBehaviour
{

    public static float remainingShots = 6;
    public Transform shot1;
    public Transform shot2;
    public Transform shot3;
    public Transform shot4;
    public Transform shot5;
    public Transform shot6;

    // Start is called before the first frame update
    void Start()
    {

    }

    // Update is called once per frame
    void Update()
    {
      if (remainingShots > 0)
      {
        shot1.GetComponent<Image> ().enabled = true;
      }
      else
      {
        shot1.GetComponent<Image> ().enabled = false;
      }

      if (remainingShots > 1)
      {
        shot2.GetComponent<Image> ().enabled = true;
      }
      else
      {
        shot2.GetComponent<Image> ().enabled = false;
      }

      if (remainingShots > 2)
      {
        shot3.GetComponent<Image> ().enabled = true;
      }
      else
      {
        shot3.GetComponent<Image> ().enabled = false;
      }

      if (remainingShots > 3)
      {
        shot4.GetComponent<Image> ().enabled = true;
      }
      else
      {
        shot4.GetComponent<Image> ().enabled = false;
      }

      if (remainingShots > 4)
      {
        shot5.GetComponent<Image> ().enabled = true;
      }
      else
      {
        shot5.GetComponent<Image> ().enabled = false;
      }

      if (remainingShots > 5)
      {
        shot6.GetComponent<Image> ().enabled = true;
      }
      else
      {
        shot6.GetComponent<Image> ().enabled = false;
      }


      if(Input.GetButtonDown("Fire1"))
      {
      remainingShots -= 1;
      }
    }
}

To switch to another scene after your conditions do the following:要在您的条件后切换到另一个场景,请执行以下操作:
1. Add the OtherScenes to your game by doing this: 1. 通过执行以下操作将 OtherScenes 添加到您的游戏中:

File -> Build Settings -> Add Open Scenes文件 -> 构建设置 -> 添加打开的场景


2. Do something like this in your code: 2. 在你的代码中做这样的事情:

Enemy Script.cs

using UnityEngine.SceneManagement; // Contains scene management functions

public GameObject[] enemies;

void Update()
{
    enemies = GameObject.FindGameObjectsWithTag("Enemy"); // Checks if enemies are available with tag "Enemy". Note that you should set this to your enemies in the inspector.
    if (enemies.length == 0)
    {
        SceneManager.LoadScene("OtherSceneName"); // Load the scene with name "OtherSceneName"
    }
}

Bullet Script.cs
using UnityEngine.SceneManagement;

void Update()
{
    if (remainingShots == -1)
    {
        SceneManager.LoadScene("OtherSceneName");
    }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM