news 2026/4/4 14:44:19

Unity教学 项目1 2D赛车小游戏

作者头像

张小明

前端开发工程师

1.2k 24
文章封面图
Unity教学 项目1 2D赛车小游戏

视频链接:

https://www.bilibili.com/video/BV1wT9rYZEKe?spm_id_from=333.788.videopod.sections&vd_source=25b783f5f945c4507229e9dec657b5bb

本教程涉及到 Unity 常用组件、常用方法等核心知识点,掌握本教程相关知识后你就就可以快速掌握一些 Unity2D 常用组件了

1.需求分析

  1. 玩家通过点击屏幕上的向左、向右移动按钮控制红色小车左右移动避让黄色小车
  2. 黄色小车在屏幕最上方随机生成后向下移动
  3. 屏幕右上方分数跟随时间变化而变化
  4. 红色小车与某一辆黄色小车碰撞则游戏结束,弹出游戏结束界面
  5. 游戏结束界面上有本局游戏分数以及重新开始的按钮

2.代码实现

2.1 创建项目目录

  • Imags:静态图片

  • Prefabs:预设物体

  • Resources:动态资源

    • Audio:音频
  • Scenes:场景

  • Scripts:脚本

2.2 创建面板、小车、按钮等

2.3 按钮控制红色小车左右移动

创建游戏管理脚本 GameManager.cs

usingSystem.Collections;usingSystem.Collections.Generic;usingUnityEngine;publicclassGameManager:MonoBehaviour{/// <summary>/// 游戏管理器实例/// </summary>publicstaticGameManagerinsta;/// <summary>/// 主界面/// </summary>publicMainPanelmainPanel;privatevoidAwake(){insta=this;}// Start is called before the first frame updatevoidStart(){}// Update is called once per framevoidUpdate(){}}

红色小车挂载脚本 RedCar.cs

usingSystem.Collections;usingSystem.Collections.Generic;usingUnityEngine;publicclassRedCar:MonoBehaviour{/// <summary>/// 移动速度/// </summary>privateintmoveSpeed=100;/// <summary>/// 移动方向/// </summary>publicintmoveDirection=0;// Start is called before the first frame updatevoidStart(){}// Update is called once per framevoidUpdate(){//屏幕范围内左右移动if(moveDirection==-1&&transform.localPosition.x<=-490)return;if(moveDirection==1&&transform.localPosition.x>=490)return;transform.localPosition+=newVector3(moveDirection*moveSpeed*Time.deltaTime,0,0);}/// <summary>/// 碰撞显示结束界面/// </summary>/// <param name="collision"></param>privatevoidOnTriggerEnter2D(Collider2Dcollision){GameManager.insta.overPanel.ShowPanel();}}

主界面挂载脚本 MainPanel.cs,拖拽相应物体

usingSystem.Collections;usingSystem.Collections.Generic;usingUnityEngine;usingUnityEngine.UI;publicclassMainPanel:MonoBehaviour{/// <summary>/// 红色小车物体/// </summary>publicRedCarredCar;/// <summary>/// 分数文本/// </summary>publicTextscoreText;// Start is called before the first frame updatevoidStart(){}// Update is called once per framevoidUpdate(){}/// <summary>/// 点击按钮向左移动/// </summary>publicvoidOnLeftMoveClick(){redCar.moveDirection=-1;}/// <summary>/// 点击按钮向右移动/// </summary>publicvoidOnRightMoveClick(){redCar.moveDirection=1;}}

2.4 黄色小车自动向下移动

黄色小车挂载脚本 YellowCar.cs

usingSystem.Collections;usingSystem.Collections.Generic;usingUnityEngine;publicclassYellowCar:MonoBehaviour{/// <summary>/// 移动速度/// </summary>privateintmoveSpeed=100;// Start is called before the first frame updatevoidStart(){}// Update is called once per framevoidUpdate(){transform.localPosition-=newVector3(0,moveSpeed*Time.deltaTime,0);//向下移动if(transform.localPosition.y<=-1060)Destroy(gameObject);//如果移动到屏幕最底端则自动销毁}}

2.5 红色小车与黄色小车碰撞则游戏结束

红色小车挂载组件 Box Collider 2D 和 Rigidbody 2D

黄色小车挂载组件 Box Collider 2D

结束界面挂载脚本 OverPanel.cs

usingSystem.Collections;usingSystem.Collections.Generic;usingUnityEngine;usingUnityEngine.SceneManagement;usingUnityEngine.UI;publicclassOverPanel:MonoBehaviour{/// <summary>/// 分数文本/// </summary>publicTextscoreText;// Start is called before the first frame updatevoidStart(){}// Update is called once per framevoidUpdate(){}/// <summary>/// 显示面板/// </summary>publicvoidShowPanel(){Time.timeScale=0f;//游戏暂停gameObject.SetActive(true);}/// <summary>/// 点击按钮重新开始游戏/// </summary>publicvoidOnRestartClick(){Time.timeScale=1f;//游戏恢复gameObject.SetActive(false);SceneManager.LoadScene(0);}}

GameManager.cs 新增结束界面变量

publicclassGameManager:MonoBehaviour{/// <summary>/// 游戏管理器实例/// </summary>publicstaticGameManagerinsta;/// <summary>/// 主界面/// </summary>publicMainPanelmainPanel;/// <summary>/// 结束界面/// </summary>publicOverPaneloverPanel;...

2.6 更新界面分数

主界面

...publicclassMainPanel:MonoBehaviour{/// <summary>/// 红色小车物体/// </summary>publicRedCarredCar;/// <summary>/// 分数文本/// </summary>publicTextscoreText;/// <summary>/// 分数数值/// </summary>publicintscore;/// <summary>/// 开始时间/// </summary>privatefloatstartTime;// Start is called before the first frame updatevoidStart(){startTime=Time.time;}// Update is called once per framevoidUpdate(){//更新分数score=(int)(Time.time-startTime);scoreText.text="分数:"+score;}...

结束界面

...publicclassOverPanel:MonoBehaviour{/// <summary>/// 分数文本/// </summary>publicTextscoreText;// Start is called before the first frame updatevoidStart(){}// Update is called once per framevoidUpdate(){scoreText.text="分数:"+GameManager.insta.mainPanel.score;}...

2.7 通过预设随机生成黄色小车

创建黄色小车根目录

.../// <summary>/// 创建黄色小车上一次时间/// </summary>privatefloatlastTime;/// <summary>/// 黄色小车物体预设/// </summary>publicGameObjectpreYellowCarGo;/// <summary>/// 黄色小车根目录/// </summary>publicGameObjectyellowCarRootGo;// Start is called before the first frame updatevoidStart(){startTime=Time.time;lastTime=Time.time;}// Update is called once per framevoidUpdate(){//更新分数score=(int)(Time.time-startTime);scoreText.text="分数:"+score;//每过3秒生成一辆黄色小车if(Time.time-lastTime>=3f){CreateYellowCar();lastTime=Time.time;}}/// <summary>/// 点击按钮向左移动/// </summary>publicvoidOnLeftMoveClick(){redCar.moveDirection=-1;}/// <summary>/// 点击按钮向右移动/// </summary>publicvoidOnRightMoveClick(){redCar.moveDirection=1;}/// <summary>/// 创建黄色小车/// </summary>privatevoidCreateYellowCar(){//在x坐标为-490到490之间随机生成黄色小车GameObjectyellowCarGo=Instantiate(preYellowCarGo,yellowCarRootGo.transform);intrandomInt=Random.Range(-490,490);yellowCarGo.transform.localPosition=newVector3(randomInt,1060,0);}}

2.8 添加音频

创建游戏中音频物体

.../// <summary>/// 黄色小车根目录/// </summary>publicGameObjectyellowCarRootGo;/// <summary>/// 游戏进行中音频/// </summary>publicAudioSourcegameInAudioSource;// Start is called before the first frame updatevoidStart(){startTime=Time.time;// 开始时间赋值lastTime=Time.time;// 创建黄色小车上一次时间赋值gameInAudioSource.Play();//播放游戏进行音乐}...

创建游戏结束音频物体

.../// <summary>/// 游戏技术音频/// </summary>publicAudioSourcegameOverAudioSource;.../// <summary>/// 显示面板/// </summary>publicvoidShowPanel(){Time.timeScale=0f;//游戏暂停gameObject.SetActive(true);//停止游戏进行音频,播放游戏结束音频if(GameManager.insta.mainPanel.gameInAudioSource.isPlaying){GameManager.insta.mainPanel.gameInAudioSource.Stop();}gameOverAudioSource.Play();}...

2.9 物体换皮

3.完整代码

GameManager

usingSystem.Collections;usingSystem.Collections.Generic;usingUnityEngine;publicclassGameManager:MonoBehaviour{/// <summary>/// 游戏管理器实例/// </summary>publicstaticGameManagerinsta;/// <summary>/// 主界面/// </summary>publicMainPanelmainPanel;/// <summary>/// 结束界面/// </summary>publicOverPaneloverPanel;privatevoidAwake(){insta=this;}// Start is called before the first frame updatevoidStart(){}// Update is called once per framevoidUpdate(){}}

MainPanel

usingSystem.Collections;usingSystem.Collections.Generic;usingUnityEngine;usingUnityEngine.UI;publicclassMainPanel:MonoBehaviour{/// <summary>/// 红色小车物体/// </summary>publicRedCarredCar;/// <summary>/// 分数文本/// </summary>publicTextscoreText;/// <summary>/// 分数数值/// </summary>publicintscore;/// <summary>/// 开始时间/// </summary>privatefloatstartTime;/// <summary>/// 创建黄色小车上一次时间/// </summary>privatefloatlastTime;/// <summary>/// 黄色小车物体预设/// </summary>publicGameObjectpreYellowCarGo;/// <summary>/// 黄色小车根目录/// </summary>publicGameObjectyellowCarRootGo;/// <summary>/// 游戏进行中音频/// </summary>publicAudioSourcegameInAudioSource;// Start is called before the first frame updatevoidStart(){startTime=Time.time;// 开始时间赋值lastTime=Time.time;// 创建黄色小车上一次时间赋值gameInAudioSource.Play();//播放游戏进行音乐}// Update is called once per framevoidUpdate(){//更新分数score=(int)(Time.time-startTime);scoreText.text="分数:"+score;//每过3秒生成一辆黄色小车if(Time.time-lastTime>=3f){CreateYellowCar();lastTime=Time.time;}}/// <summary>/// 点击按钮向左移动/// </summary>publicvoidOnLeftMoveClick(){redCar.moveDirection=-1;}/// <summary>/// 点击按钮向右移动/// </summary>publicvoidOnRightMoveClick(){redCar.moveDirection=1;}/// <summary>/// 创建黄色小车/// </summary>privatevoidCreateYellowCar(){//在x坐标为-490到490之间随机生成黄色小车GameObjectyellowCarGo=Instantiate(preYellowCarGo,yellowCarRootGo.transform);intrandomInt=Random.Range(-490,490);yellowCarGo.transform.localPosition=newVector3(randomInt,1060,0);}}

OverPanel

usingSystem.Collections;usingSystem.Collections.Generic;usingUnityEngine;usingUnityEngine.SceneManagement;usingUnityEngine.UI;publicclassOverPanel:MonoBehaviour{/// <summary>/// 分数文本/// </summary>publicTextscoreText;/// <summary>/// 游戏技术音频/// </summary>publicAudioSourcegameOverAudioSource;// Start is called before the first frame updatevoidStart(){}// Update is called once per framevoidUpdate(){scoreText.text="分数:"+GameManager.insta.mainPanel.score;}/// <summary>/// 显示面板/// </summary>publicvoidShowPanel(){Time.timeScale=0f;//游戏暂停gameObject.SetActive(true);//停止游戏进行音频,播放游戏结束音频if(GameManager.insta.mainPanel.gameInAudioSource.isPlaying){GameManager.insta.mainPanel.gameInAudioSource.Stop();}gameOverAudioSource.Play();}/// <summary>/// 点击按钮重新开始游戏/// </summary>publicvoidOnRestartClick(){Time.timeScale=1f;//游戏恢复gameObject.SetActive(false);SceneManager.LoadScene(0);}}

RedCar

usingSystem.Collections;usingSystem.Collections.Generic;usingUnityEngine;publicclassRedCar:MonoBehaviour{/// <summary>/// 移动速度/// </summary>privateintmoveSpeed=100;/// <summary>/// 移动方向/// </summary>publicintmoveDirection=0;// Start is called before the first frame updatevoidStart(){}// Update is called once per framevoidUpdate(){//屏幕范围内左右移动if(moveDirection==-1&&transform.localPosition.x<=-490)return;if(moveDirection==1&&transform.localPosition.x>=490)return;transform.localPosition+=newVector3(moveDirection*moveSpeed*Time.deltaTime,0,0);}/// <summary>/// 碰撞显示结束界面/// </summary>/// <param name="collision"></param>privatevoidOnTriggerEnter2D(Collider2Dcollision){GameManager.insta.overPanel.ShowPanel();}}

YellowCar

usingSystem.Collections;usingSystem.Collections.Generic;usingUnityEngine;publicclassYellowCar:MonoBehaviour{/// <summary>/// 移动速度/// </summary>privateintmoveSpeed=100;// Start is called before the first frame updatevoidStart(){}// Update is called once per framevoidUpdate(){transform.localPosition-=newVector3(0,moveSpeed*Time.deltaTime,0);//向下移动if(transform.localPosition.y<=-1060)Destroy(gameObject);//如果移动到屏幕最底端则自动销毁}}
版权声明: 本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:809451989@qq.com进行投诉反馈,一经查实,立即删除!
网站建设 2026/3/26 9:00:54

图书管理系统项目PPT文稿

图书管理系统项目PPT文稿封面页标题&#xff1a;Java图书管理系统 - 从0到1实现方案副标题&#xff1a;整合设计模式与Java基础的实战项目制作者&#xff1a;XXX日期&#xff1a;XXX目录页项目概述核心技术与设计模式系统架构与模块划分核心类设计业务功能实现项目测试与扩展总…

作者头像 李华
网站建设 2026/4/2 7:49:43

基于vue的培训机构课程报名教育管理系统_jzj3cqd0_springboot php python nodejs

目录具体实现截图项目介绍论文大纲核心代码部分展示项目运行指导结论源码获取详细视频演示 &#xff1a;文章底部获取博主联系方式&#xff01;同行可合作具体实现截图 本系统&#xff08;程序源码数据库调试部署讲解&#xff09;同时还支持java、ThinkPHP、Node.js、Spring B…

作者头像 李华
网站建设 2026/4/3 9:02:23

基于vue的校园快递代取系统的设计与实现_3gshfal8_springboot php python nodejs

目录具体实现截图项目介绍论文大纲核心代码部分展示项目运行指导结论源码获取详细视频演示 &#xff1a;文章底部获取博主联系方式&#xff01;同行可合作具体实现截图 本系统&#xff08;程序源码数据库调试部署讲解&#xff09;同时还支持java、ThinkPHP、Node.js、Spring B…

作者头像 李华
网站建设 2026/4/3 12:54:32

MLflow全球化部署终极指南:构建跨国机器学习协作平台

MLflow全球化部署终极指南&#xff1a;构建跨国机器学习协作平台 【免费下载链接】mlflow 一个关于机器学习工作流程的开源项目&#xff0c;适合对机器学习工作流程和平台开发感兴趣的人士学习和应用&#xff0c;内容包括数据集管理、模型训练、模型部署等多个方面。特点是功能…

作者头像 李华
网站建设 2026/4/3 16:51:29

基于vue的乡村旅游系统_家乡宣传系统nky846l2_springboot php python nodejs

目录具体实现截图项目介绍论文大纲核心代码部分展示项目运行指导结论源码获取详细视频演示 &#xff1a;文章底部获取博主联系方式&#xff01;同行可合作具体实现截图 本系统&#xff08;程序源码数据库调试部署讲解&#xff09;同时还支持java、ThinkPHP、Node.js、Spring B…

作者头像 李华