news 2026/6/9 19:50:17

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/5/29 19:47:08

Unity教学 项目4 3D求生枪手

视频教程&#xff1a; https://www.bilibili.com/video/BV16F7zzqEJF?spm_id_from333.788.videopod.sections&vd_source25b783f5f945c4507229e9dec657b5bb 1. 项目初始化 创建项目“ServivalShooter” 导入包“Survival Shooter.unitypackage” 导入环境、灯光预设&a…

作者头像 李华
网站建设 2026/6/9 1:47:15

广告拦截神器uBlock Origin:3大性能优势让你告别90%的网页广告困扰

你是否曾经因为视频前90秒的广告而放弃观看&#xff1f;是否被弹窗广告打断阅读体验&#xff1f;今天我要为你介绍一款真正改变浏览体验的广告拦截工具——uBlock Origin。作为一款轻量级宽频内容阻止程序&#xff0c;uBlock Origin广告拦截效果惊人&#xff0c;更重要的是它不…

作者头像 李华
网站建设 2026/6/7 6:54:23

FlashAttention实战指南:3大技巧让LLM推理速度提升5倍

FlashAttention实战指南&#xff1a;3大技巧让LLM推理速度提升5倍 【免费下载链接】flash-attention Fast and memory-efficient exact attention 项目地址: https://gitcode.com/GitHub_Trending/fl/flash-attention 在当今大语言模型&#xff08;LLM&#xff09;应用中…

作者头像 李华
网站建设 2026/6/9 11:37:04

K3s-基础:基础概念、单机部署、集群化部署-Docker-运行配置与安装笔记

k3s 核心概念指南K3s高可用-3台K3s控制节点部署外挂pgsql数据库,随着Kubernetes技术的发展&#xff0c;越来越多的开发者和运维人员开始接触和使用Kubernetes。但对于资源受限的环境&#xff0c;传统的Kubernetes部署显得过于复杂和资源密集。K3s&#xff0c;作为一个轻量级的K…

作者头像 李华