IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 游戏开发 -> Unity学习第三周 -> 正文阅读

[游戏开发]Unity学习第三周

游戏简介

在《FlappyBird》这款游戏中,玩家鼠标点击屏幕,小鸟就会往上飞,不断的点击就会不断的往高处飞。不点击的话则会快速下降。所以玩家要控制小鸟一直向前飞行,然后注意躲避途中高低不平的管子。
游戏效果
在这里插入图片描述

游戏设计思路
使用场景相对小鸟移动的过程间接实现小鸟在水平方向的位移,小鸟实际上只在垂直方向上进行了位置的改变,增加小鸟的重力,玩家点击鼠标按键或按空格时小鸟获得一个向上的力。当小鸟位于某根水管中间时,判断小鸟是否与该水管的上侧或者下侧,或地面发生了碰撞,如果发生碰撞则判定游戏结束,重新跳到开始界面。

游戏具体实现

1.场景的搭建
使用素材按游戏中的图样进搭建。
(1)将上下两个水管作为一个整体放入一个新建的模型(GameObject)中将该类和地面场景一起放入背景场景下。
(2)将背景场景放入预制体,ctrl+D复制。
(3)将小鸟素材制成动画(将小鸟所有图片选中拖入到Hierarchy)放入场景中。
2.游戏物体添加组件
为小鸟添加刚体和碰撞体,将地面,水管添加碰撞体。

编写代码

小鸟的代码
写小鸟的代码需要注意的是与地面,水管碰撞时用碰撞检测,而与金币时用触发检测。这里的金币也可以改成在两个水管之间加触发器,当小鸟经过水管后得一分。

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

public class Bird : MonoBehaviour
{
    public int score = 0;//分数
    public Rigidbody2D rigidbodybird;
    public GameObject isDefentUI;
    public Text text; 
    public SpriteRenderer sr;
    public Sprite birds;
    // Start is called before the first frame update
    private void Awake()
    {
        sr = GetComponent<SpriteRenderer>();
    }
    void Start()
    {
        rigidbodybird = GetComponent<Rigidbody2D>();

    }

    // Update is called once per frame
    void Update()
    {
       
        Up();
    }
     void Up()
    {
        if (Input.GetKeyDown(KeyCode.Space)||Input.GetMouseButton(0))
        {
            rigidbodybird.AddForce(new Vector2(0, 250f));
        }
    }
    public void OnTriggerEnter2D(Collider2D other)
    {
       //触发检测食物
        if (other.tag == "Food")
        {

            Destroy(other.gameObject);//销毁食物
            score++;
            text.text = "分数:" + score;
        }  
    }
    public void OnCollisionEnter2D(Collision2D collision)
    {
    //检测是否碰撞水管和地面
        if (collision.gameObject.tag == "Pipe" || collision.gameObject.tag == "Grass")
        {
            sr.sprite = birds;
            isDefentUI.SetActive(true);
            Invoke("ReturnMenu", 3);//如果游戏结束返回主界面

        }
    }
    private void ReturnMenu()
    {
        SceneManager.LoadScene(1);
    }
   
}

背景的代码
背景随时间的进行向左移动
这里注意是整个背景得移动。

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

public class backgrad : MonoBehaviour
{
    public float speed = 2f;//移动速度
    // Start is called before the first frame update
    void Start()
    {
        
    }

    // Update is called once per frame
    void Update()
    {
        transform.Translate(Vector3.left * speed * Time.deltaTime);
    }
}

背景的循环
当相机视野移出背景触发了第二个背景中的触发器第一个背景移到第三个背景后。

//背景的循环
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Pipe : MonoBehaviour
{
   
     void Update()
    {
     
    }
    public void PipeMove()
    {
        float move_y = Random.Range(1,8);
        this.transform.localPosition = new Vector2(this.transform.localPosition.x, move_y);
    }
}
//触发检测
using System.Collections.Generic;
using UnityEngine;

public class trige : MonoBehaviour
{
    public Transform GetTransform;
    public void OnTriggerEnter2D(Collider2D other)
    {
        if(other.tag=="Bird")
        {
            Transform tf = Newcamer.newcamera.tf;
            GetTransform.position = new Vector2(GetTransform.position.x+71, GetTransform.position.y);
            Newcamer.newcamera.tf = GetTransform;
        }
    }
}

主菜单的实现

主菜单界面(简化版)
在这里插入图片描述
在这里插入图片描述
Image的代码
用来选择和确认

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;

public class Image : MonoBehaviour
{
    public Transform poseone;
    public Transform posetwo;
    private float h = 1;
    // Start is called before the first frame update
    void Start()
    {

    }

    // Update is called once per frame
    void Update()
    {
        if (Input.GetKeyDown(KeyCode.W))
        {
            h = 1;
            transform.position = poseone.position;
        }
        else if (Input.GetKeyDown(KeyCode.S))
        {
            h = 2;
            transform.position = posetwo.position;
        }
        if (Input.GetKeyDown(KeyCode.Space) && h == 1)
        {
            SceneManager.LoadScene(0);//跳到游戏界面
        }
    }
}
  游戏开发 最新文章
6、英飞凌-AURIX-TC3XX: PWM实验之使用 GT
泛型自动装箱
CubeMax添加Rtthread操作系统 组件STM32F10
python多线程编程:如何优雅地关闭线程
数据类型隐式转换导致的阻塞
WebAPi实现多文件上传,并附带参数
from origin ‘null‘ has been blocked by
UE4 蓝图调用C++函数(附带项目工程)
Unity学习笔记(一)结构体的简单理解与应用
【Memory As a Programming Concept in C a
上一篇文章      下一篇文章      查看所有文章
加:2022-02-01 20:55:16  更:2022-02-01 20:55:34 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/27 18:39:49-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码