Tự động tạo Zombie trong game Zombie Hunter với Unity3D

Lập trình game Zombie Hunter với Unity3D

5.0 (1 đánh giá)
Tạo bởi HowKteam Cập nhật lần cuối 22:00 26-10-2021 13.387 lượt xem 2 bình luận
Tác giả/Dịch giả: HowKteam
Học nhanh

Danh sách bài học

Tự động tạo Zombie trong game Zombie Hunter với Unity3D

Không có gì tuyệt vời hơn là luyện tập với ví dụ thực tế. Nào cùng nhau thử thách bản thân với trò chơi thú vị: Zombie Hunter

Bạn nên có kiến thức về:

  • Lập trình C# cơ bản
  • Class
  • OOP trong C#
  • Xem qua hai serial game 2D với Unity3D: Flappy bird Doge game

Code RotateGun.cs

using UnityEngine;
using System.Collections;

public class RotateGun : MonoBehaviour {
    public Vector3 target;
	// Use this for initialization
	void Start () {
	
	}
	
	// Update is called once per frame
	void Update () {

        LookAtCursor();
	}

    void LookAtCursor()
    {
        Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);
        RaycastHit hit;

        if (Physics.Raycast(ray, out hit))
        {
            target = hit.point;
        }

        transform.LookAt(target);
    }
}

Code MoveToPlayer.cs

using UnityEngine;
using System.Collections;

public class MoveToPlayer : MonoBehaviour {

    float moveSpeed;
    public float minMoveSpeed = 0.05f;
    public float maxMoveSpeed = 0.3f;
    GameObject player;
    GameObject lookAtTarget;
	// Use this for initialization
	void Start () {
        player = GameObject.FindGameObjectWithTag("Player");
        lookAtTarget = GameObject.FindGameObjectWithTag("LookTarget");
        UpdateMoveSpeed();
	}

    void UpdateMoveSpeed()
    {
        moveSpeed = Random.Range(minMoveSpeed, maxMoveSpeed);
    }
	
    void Move()
    {
        if (player == null || lookAtTarget == null)
            return;
        transform.LookAt(lookAtTarget.transform.position);
        transform.position = Vector3.Lerp(transform.position, player.transform.position, moveSpeed * Time.deltaTime);
    }

	// Update is called once per frame
	void Update () {
        Move();
	}
}

Code SpawnEnemy.cs

using UnityEngine;
using System.Collections;

public class SpawnEnemy : MonoBehaviour {

    GameObject[] spawnPoint;
    public GameObject zombie;
    public float minSpawnTime = 0.2f;
    public float maxSpawnTime = 1;
    private float lastSpawnTime = 0;
    private float spawnTime = 0;
	// Use this for initialization
	void Start () {
        spawnPoint = GameObject.FindGameObjectsWithTag("Respawn");
        UpdateSpawnTime();
	}

    void UpdateSpawnTime()
    {
        lastSpawnTime = Time.time;
        spawnTime = Random.Range(minSpawnTime, maxSpawnTime);
    }

    void Spawn()
    {
        int point = Random.Range(0, spawnPoint.Length);
        Instantiate(zombie, spawnPoint[point].transform.position, Quaternion.identity);
        UpdateSpawnTime();
    }
	
	// Update is called once per frame
	void Update () {
	    if (Time.time >= lastSpawnTime + spawnTime)
        {
            Spawn();
        }
	}
}

File game Demo

File Assets

project

Bài sau chúng ta sẽ cùng nhau tìm hiểu về cách tạo hiệu ứng di chuyển cho Zombie.

Đừng quên: “Luyện tập – Thử thách – Không ngại khó


Tải xuống

Tài liệu

Nhằm phục vụ mục đích học tập Offline của cộng đồng, Kteam hỗ trợ tính năng lưu trữ nội dung bài học Tự động tạo Zombie trong game Zombie Hunter với Unity3D dưới dạng file PDF trong link bên dưới.

Ngoài ra, bạn cũng có thể tìm thấy các tài liệu được đóng góp từ cộng đồng ở mục TÀI LIỆU trên thư viện Howkteam.com

Đừng quên likeshare để ủng hộ Kteam và tác giả nhé!

Project

Nếu việc thực hành theo hướng dẫn không diễn ra suôn sẻ như mong muốn. Bạn cũng có thể tải xuống PROJECT THAM KHẢO ở link bên dưới!


Thảo luận

Nếu bạn có bất kỳ khó khăn hay thắc mắc gì về khóa học, đừng ngần ngại đặt câu hỏi trong phần bên dưới hoặc trong mục HỎI & ĐÁP trên thư viện Howkteam.com để nhận được sự hỗ trợ từ cộng đồng.

Nội dung bài viết

Tác giả/Dịch giả

Khóa học

Lập trình game Zombie Hunter với Unity3D

Lập trình game Zombie Hunter với Unity3D

Đánh giá

Vo Tan Duc đã đánh giá 13:38 23-09-2022

Hay quá anh Long ơi! Mong Kteam sẽ có ra nhiều khóa hướng dẫn làm game như vậy nũa!

Bình luận

Để bình luận, bạn cần đăng nhập bằng tài khoản Howkteam.

Đăng nhập
hawng28 đã bình luận 14:10 05-10-2023

Xin chào Kteam, file asset bị từ chối truy cập mình cần tìm asset ở đâu

 

bimkute đã bình luận 10:14 04-05-2018

Chào HowKteam,

Mình có làm theo hướng dẫn để tạo zombie, mình thấy zombie vẫn tạo ra bình thường nhưng mỗi lần tạo lại bị 1 đống warning

The referenced script on this Behaviour is missing

The referenced script on this Behaviour (Game Object 'helicopter' )is missing

The referenced script on this Behaviour (Game Object '<null>' )is missing

UnityEngine.Object:Instantiate(GameObject, Vector3, Quaternion)

The referenced script on this Behaviour (Game Object '<Zombie>' )is missing

UnityEngine.Object:Instantiate(GameObject, Vector3, Quaternion)

 

Ở đây có helicopter của mình giống như cái Spawn trong video

Bạn có thể giải thích giúp mình ko?

Không có video.