Unity经典游戏教程之:雪人兄弟

版权声明:

  • 本文原创发布于博客园"优梦创客"的博客空间(网址:http://www.cnblogs.com/raymondking123/)以及微信公众号"优梦创客"(微信号:unitymaker)
  • 您可以自由转载,但必须加入完整的版权声明!

雪人兄弟游戏开发过程:

场景搭建

1.将Map地图拖入场景,

9Fqek4.png

2.创建一个ground空对象给这个对象添加一些Collider 2D 组件,把这些Collide2D覆盖到地图可以行走的地方,创建以个wall空对象给这个对象添加两个Collider 2D组件,把这两个 Collide2D 覆盖到地图的两侧。

9FOKL6.jpg

创建主角

1.创建hero对象给其一张主角的图片精灵,给hero对象添加Rigidbody2D和Collider 2D组件使其可以进行物理运动和碰撞行为;

9FO2yq.png

2. 创建动画控制器,编辑一些主角行为的的动画,再用动画控制器进行控制;

9FXxuq.jpg

3. 添加HeroMove脚本,通过编辑代码使主角可以移动和跳跃;

//Update时通过射线检测判断是否可以跳跃:RaycastHit2D hit = Physics2D.Linecast(this.transform.position, t.position, 1 << LayerMask.NameToLayer("ground"));//Debug.DrawLine(this.transform.position, t.position);// t.position//print((bool)hit);if (Input.GetButtonDown("Jump") && hit){jump = true;}···
//FixedUpdatebool speed = false; //触发动画的布尔变量float h = Input.GetAxis("Horizontal");if (h != 0){speed = true;}Vector2 force = new Vector2(h * moveForce, 0);//限制移动速度if (Mathf.Abs(rb.velocity.x) < maxSpeed){GetComponent<Animator>().SetBool("Speed", speed);rb.AddForce(force);}if (Mathf.Abs(rb.velocity.x) >= maxSpeed){rb.velocity = new Vector2(Mathf.Sign(rb.velocity.x) * maxSpeed, rb.velocity.y);}//动画方向转变if (h < 0){var s = this.transform.localScale;s.x = Mathf.Abs(-s.x);this.transform.localScale = s;}else if (h > 0){var s = this.transform.localScale;s.x = -Mathf.Abs(-s.x);this.transform.localScale = s;}//跳跃if (jump){GetComponent<Animator>().SetTrigger("jump");rb.AddForce(Vector2.up * jumpForce);jump = false;}

4.让主角可以发射子弹:

1. 制作子弹预制体 ,

9Fb0wF.png

2.给hero添加一个子节点Gun作为生成子弹的点,并添加脚本控制子弹的发射和行为。

void Update () {if (Input.GetButtonDown("Fire1")){this.transform.parent.gameObject.GetComponent<Animator>().SetTrigger("Shoot");var rocket = Instantiate(rocketPrefab);rocket.transform.position = this.transform.position;if (this.transform.parent.localScale.x > 0){rocket.transform.rotation = Quaternion.Euler(0, 0, 0);rocket.GetComponent<Rigidbody2D>().velocity = new Vector2(speed, 0);}else{rocket.transform.rotation = Quaternion.Euler(0, 0, 180);rocket.GetComponent<Rigidbody2D>().velocity = new Vector2(-speed, 0);}}}

创建敌人:

1.创建一个monsters空对象为了确定敌人生成的位置:

2. 创建monster对象给其一张敌人的图片精灵,给monster对象添加Rigidbody2D和Collider2D组件使其可以进行物理运动和碰撞行为,并把它做成预制体。

9FjLdK.png

3. 添加Monster脚本,通过编辑代码使敌人可以移动和跳跃;

public class Monster : MonoBehaviour
{// public float speed = 3; private float MonsterMoveForce = 0.8f;  //速度//private float MonsterMaxSpeed = 0.5f;     //限制速度public float monsterJumpForce = 600f; //= 2.8f;private bool monsterJump = false;private Transform topCheck;private Transform frontCheck;private Transform downCheck;int h;private int hp = 1;public GameObject snowball;public void Start(){topCheck = transform.Find("topCheck");frontCheck = transform.Find("frontCheck");downCheck = transform.Find("DownCheck");}public void Update(){if (hp <= 0){Vector2 s = this.transform.position;hp = 0;Destroy(this.gameObject);GameObject g = Instantiate(snowball);g.transform.position = s;return;}}public void FixedUpdate(){// 跳跃           RaycastHit2D hit1 = Physics2D.Linecast(topCheck.position, this.transform.position, 1 << LayerMask.NameToLayer("ground"));RaycastHit2D hit2 = Physics2D.Linecast(downCheck.position, this.transform.position, 1 << LayerMask.NameToLayer("ground"));RaycastHit2D hit = Physics2D.Linecast(frontCheck.position, this.transform.position);h = Random.Range(0, 100);Rigidbody2D rb = this.transform.gameObject.GetComponent<Rigidbody2D>();Debug.DrawLine(this.transform.position, topCheck.position);Debug.DrawLine(this.transform.position, downCheck.position);Debug.DrawLine(this.transform.position, frontCheck.position);if (hit && hit.transform.gameObject.tag == "wall" || hit.transform.gameObject.tag == "destroyer"){Vector3 s = this.transform.localScale;//s.x = -s.x;this.transform.localScale = s;}else if (hit2 && hit && hit.transform.gameObject.tag == "ground"){monsterJump = true;}else{    //随机方向         if (h == 2){Vector3 s = this.transform.localScale;s.x = -s.x;this.transform.localScale = s;}}//移动     Vector2 x = new Vector2(-this.transform.localScale.x * MonsterMoveForce, rb.velocity.y);rb.velocity = x;this.gameObject.GetComponent<Animator>().SetTrigger("move");//跳跃if (hit1 && hit2 && h == 3){monsterJump = true;}if (monsterJump){rb.AddForce(Vector2.up * monsterJumpForce);monsterJump = false;}}public void OnCollisionEnter2D(Collision2D collision){if (collision.gameObject.tag == "ground"){this.gameObject.GetComponent<Animator>().SetTrigger("ground");}if (collision.gameObject.tag == "bullet"){hp--;}}public void OnCollisionExit2D(Collision2D collision){if (collision.gameObject.tag == "ground"){this.gameObject.GetComponent<Rigidbody2D>().velocity = new Vector2(0, 0);this.gameObject.GetComponent<Animator>().SetTrigger("groundl");}}}

创建雪球:

1. 创建snowball对象给其一张默认的图片精灵,给snowball对象添加Rigidbody2D和lColider2D组件使其可以进行物理运动和碰撞行,并把它做成预制体。

9kZKde.png
9kZmqO.png
9kZuZD.png

2.给snowball对象添加脚本通过编辑代码,添加状态机使雪球状态可以切换。

public class Snowball : MonoBehaviour
{StateMachine<Snowball> stateMachine = new StateMachine<Snowball>();public Sprite snowball1;public Sprite snowball2;public Sprite snowball3;public GameObject monster;public Transform frontCheck;public GameObject[] props;public GameObject balldestory;// Use this for initialization//雪球状态public class SnowballStateB : State<Snowball>{public float explodeTime = 0;public bool gun = false;public float gunForce = 3f;float dir;public override void Enter(Snowball e){e.gameObject.GetComponent<SpriteRenderer>().sprite = e.snowball1; //获的图片e.gameObject.GetComponent<Animator>().SetTrigger("snowball1");e.frontCheck = e.transform.Find("frontCheck");e.gameObject.layer = LayerMask.NameToLayer("snowball");}public override void Update(Snowball e){//雪球没滚时隔 6 个时间点恢复成版雪球if (gun == false){explodeTime += Time.deltaTime;if (explodeTime > 6){explodeTime = 0;e.stateMachine.ChangeState(new SnowballStateA());return;}}else if (gun){Rigidbody2D rb = e.gameObject.GetComponent<Rigidbody2D>();rb.freezeRotation = false;Vector2 v = new Vector2(dir * gunForce, rb.velocity.y);// rb.AddForce(v);rb.velocity = v;Collider2D[] enemies = Physics2D.OverlapCircleAll(e.transform.position, 0.05f, 1 << LayerMask.NameToLayer("monster"));foreach (Collider2D a in enemies){Vector2 s = a.gameObject.transform.position;Destroy(a.gameObject);GameObject prop = Instantiate(e.props[Random.Range(0, e.props.Length)]);prop.transform.position = s;}}}public override void OnCollisionStay2D(Snowball e, Collision2D collision){ContactPoint2D[] a = collision.contacts;if (gun == false){if (collision.gameObject.tag == "player" && collision.gameObject.transform.FindChild("Gun").GetComponent<Gun>().isFire){//  dir = -GameObject.Find("hero").transform.localScale.x;gun = true;dir = -collision.transform.localScale.x;}}}public override void OnCollisionEnter2D(Snowball e, Collision2D collision){if (gun == false){if (collision.gameObject.tag == "snowball"){gun = true;dir = -collision.transform.localScale.x;}}if (gun){if (collision.gameObject.tag == "wall" || collision.gameObject.tag == "snowball"){dir = -dir;}if (collision.gameObject.tag == "player"){//TODO//雪球带着主角走//transform.SetParent//设置父节点 //collision.transform.SetParent(e.transform);//collision.transform.position = e.transform.position;//torque //旋转}}if (collision.gameObject.tag == "destroyer"){e.gameObject.GetComponent<Animator>().SetTrigger("destrayer");}}public override void Exit(Snowball e){}}//半雪球状态public class SnowballStateA : State<Snowball>{public float explodeTime = 0;int hp = 0;public override void Enter(Snowball e){e.gameObject.GetComponent<SpriteRenderer>().sprite = e.snowball2;e.gameObject.GetComponent<Animator>().SetTrigger("snowball2");e.gameObject.layer = LayerMask.NameToLayer("monster");hp = 2;}public override void Update(Snowball e){print(hp);if (hp <= 0){e.stateMachine.ChangeState(new SnowballStateB());return;}explodeTime += Time.deltaTime;if (explodeTime > 5 && hp > 0){explodeTime = 0;e.stateMachine.ChangeState(new SnowballState());return;}}public override void Exit(Snowball e){}public override void OnCollisionEnter2D(Snowball e, Collision2D collision){if (collision.gameObject.tag == "bullet"){hp--;}}}//monster被攻击状态;public class SnowballState : State<Snowball>{public float explodeTime = 0;Vector3 s;public int hp = 0;public override void Enter(Snowball e){//取得图片精灵e.gameObject.GetComponent<SpriteRenderer>().sprite = e.snowball3;e.gameObject.GetComponent<Animator>().SetTrigger("snowball3");e.gameObject.layer = LayerMask.NameToLayer("monster");hp = 3;}public override void Update(Snowball e){print(hp);if (hp <= 0){e.stateMachine.ChangeState(new SnowballStateA());hp = 0;return;}explodeTime += Time.deltaTime;print(explodeTime);//经过多少时    if (explodeTime > 4 && hp > 0){explodeTime = 0;hp = 0;s = e.gameObject.transform.position;GameObject g = Instantiate(e.monster);g.transform.position = s;Destroy(e.gameObject);return;}}public override void OnCollisionEnter2D(Snowball e, Collision2D collision){if (collision.gameObject.tag == "bullet"){hp--;}}}void Start(){stateMachine.Init(this, new SnowballState());}// Update is called once per framevoid Update(){}public void FixedUpdate(){stateMachine.Update();}public void OnCollisionEnter2D(Collision2D collision){stateMachine.OnCollisionEnter2D(this, collision);}public void OnCollisionStay2D(Collision2D collision){stateMachine.OnCollisionStay2D(this, collision);}public void Destory(){Instantiate(balldestory);Destroy(this.gameObject);}}

创建道具

1.添加道具预制体.
2.雪球撞到敌人时敌人死亡,在敌人死亡的地方随机生成一种道具。
3.主角吃到道具增加属性或者加分。

过关判定

  1. 判断场景中没有敌人并且没有雪球并且没有道具就过关了。

转载于:https://www.cnblogs.com/raymondking123/p/8424673.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/281238.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

一款自用的翻译小工具,开源了

一款自用的翻译小工具&#xff0c;开源了TranslationTool作者&#xff1a;WPFDevelopersOrg - 唐宋元明清|驚鏵原文链接&#xff1a;https://github.com/Kybs0/TranslationTool此项目使用WPF MVVM开发。框架使用大于等于.NET461。Visual Studio 2019。最初是支持以下&#xff1…

【ELK集群+MQ】通用部署方案以及快速实现MQ发布订阅服务功能

前言&#xff1a;大概一年多前写过一个部署ELK系列的博客文章&#xff0c;前不久刚好在部署一个ELK的解决方案&#xff0c;我顺便就把一些基础的部分拎出来&#xff0c;再整合成一期文章。大概内容包括&#xff1a;搭建ELK集群&#xff0c;以及写一个简单的MQ服务。如果需要看一…

多语言报表的改动方法

在定义上传RTF模板的时候&#xff0c;会有一个是否可翻译的选项&#xff0c;选择之后。就能够上传xlf文件作为翻译内容。 对于已经存在的多语言类型报表&#xff0c;稍作改动之后再上传&#xff0c;可能会出现下面现象&#xff1a; 进程出现了“未完毕”的提示 想要改动非常eas…

LightOJ - 1027 A Dangerous Maze —— 期望

题目链接&#xff1a;https://vjudge.net/problem/LightOJ-1027 1027 - A Dangerous MazePDF (English)StatisticsForumTime Limit: 2 second(s)Memory Limit: 32 MBYou are in a maze; seeing n doors in front of you in beginning. You can choose any door you like. The p…

MASA MAUI Plugin (六)集成个推,实现本地消息推送[Android] 篇

背景MAUI的出现&#xff0c;赋予了广大.Net开发者开发多平台应用的能力&#xff0c;MAUI 是Xamarin.Forms演变而来&#xff0c;但是相比Xamarin性能更好&#xff0c;可扩展性更强&#xff0c;结构更简单。但是MAUI对于平台相关的实现并不完整。所以MASA团队开展了一个实验性项目…

微软加更.NET7中文手册,都有哪些新亮点?

11月8号发布了.NET7&#xff0c;从底层性能改进&#xff0c;到上层API升级&#xff0c;让.NET7综合性能再度提升&#xff01;同时发布了最新的C#11&#xff0c;也带来了很多小惊喜。如何快捷学习最新的.NET7和C#11&#xff1f;答案只有一个&#xff0c;微软官方中文文档&#x…

.NET Conf China 2022 第一批讲师阵容大揭秘!整个期待了!

目光看过来2022年12月3-4日一场社区性质的国内规模最大的线上线下.NET Conf 2022技术大会即将盛大开幕目前大会正紧锣密鼓地进行中第一批大咖讲师及主题已确定小编迫不及待想和大家分享分享嘉宾很大咖分享内容很硬核戳戳小手期待ing孔令磊维宏股份 首席架构师 十多年数控领域研…

妙用SQL Server聚合函数和子查询迭代求和

先看看下面的表和其中的数据&#xff1a;t_product该表有两个字段&#xff1a;xh和price&#xff0c; 其中xh是主索引字段&#xff0c;现在要得到如下的查询结果&#xff1a;从上面的查询结果可以看出&#xff0c;totalprice字段值的规则是从第1条记录到当前记录的price之和。如…

记一次.NET某工控图片上传CPU爆高分析

一&#xff1a;背景 1.讲故事今天给大家带来一个入门级的 CPU 爆高案例&#xff0c;前段时间有位朋友找到我&#xff0c;说他的程序间歇性的 CPU 爆高&#xff0c;不知道是啥情况&#xff0c;让我帮忙看下&#xff0c;既然找到我&#xff0c;那就用 WinDbg 看一下。二&#xff…

从 WinDbg 角度理解 .NET7 的AOT玩法

一&#xff1a;背景 1.讲故事前几天 B 站上有位朋友让我从高级调试的角度来解读下 .NET7 新出来的 AOT&#xff0c;毕竟这东西是新的&#xff0c;所以这一篇我就简单摸索一下。二&#xff1a;AOT 的几个问题 1. 如何在 .NET7 中开启 AOT 功能在 .NET7 中开启 AOT 非常方便&…

【PPT】适配器模式 和 桥接模式

【PPT】适配器模式 和 桥接模式目录【PPT】适配器模式 和 桥接模式一、PPT 截图1.0、封面和目录1.1、设计模式概述1.2、结构型模式特点1.3、适配器模式1.4、桥接模式二、参考资料及 PPT 获取方法独立观察员 2022 年 11 月 15 日为之前公司准备的分享PPT&#xff0c;后来没用上。…

Flask 【第七篇】Flask中的wtforms使用

一、简单介绍flask中的wtforms WTForms是一个支持多个web框架的form组件&#xff0c;主要用于对用户请求数据进行验证。 安装&#xff1a; pip3 install wtforms 二、简单使用wtforms组件 1、用户登录 具体代码&#xff1a; from flask import Flask,render_template,request,…

为了避免内存攻击,美国国家安全局提倡Rust、C#、Go、Java、Ruby 和 Swift,但将 C 和 C++ 置于一边...

本文翻译自两篇文章&#xff0c;第一篇是对美国国家安全局在“软件内存安全”网络安全信息表的解读&#xff0c;第二篇是普及什么是内存安全&#xff0c;为什么它很重要&#xff1f;第一篇 为了避免内存攻击&#xff0c;美国国家安全局提倡Rust、C#、Go、Java、Ruby 和 Swift&a…

.NET周报【11月第2期 2022-11-15】

国内文章统一的开发平台.NET 7正式发布https://www.cnblogs.com/shanyou/archive/2022/11/09/16871945.html在 2020 年规划的.NET 5功能终于在.NET 7 完成了&#xff0c;为微软和社区一起为多年来将不同的开发产品统一起来的努力加冕&#xff0c;未来只有一个.NET, 回顾.NET 20…

chrome 悬停大图插件_Google Chrome浏览器的悬停卡:我不想要的我最喜欢的新东西

chrome 悬停大图插件If you only have a handful of open tabs in Google Chrome, it’s easy to tell what they are. But as you start to collect more tabs (or make the window smaller), it gets harder. That’s where Hover Cards come in. 如果您在Google Chrome浏览器…

GitHub Codespaces 安装 .NET 7

本文主要介绍如何在 GitHub Codespaces 这个云上 IDE 环境中安装 .NET 7背景GitHub 的 Codespaces 可以让我们随时随地编写代码&#xff0c;一些简单的修改也非常方便快捷。特别是 .NET 7 发布后&#xff0c;一些可以直接升级的小项目只需要更改配置就可以了&#xff0c;我们可…

chrome怎么隐藏浏览器_如何使用Google Chrome的隐藏阅读器模式

chrome怎么隐藏浏览器Chrome 75 has a hidden “Reader” mode that strips web pages down to the bare minimum to make them easier to, well, read. But it’s not enabled by default—here’s how to get it now. Chrome 75具有隐藏的“阅读器”模式&#xff0c;可将网页…

angularjs中使用swiper时不起作用,最后出现空白位

controller.js中定义swipers指令&#xff1a; var moduleCtrl angular.module(newscontroller,[infinite-scroll,ngTouch,news.service]) .directive(swipers,swipers); swipers.$inject [$timeout]; function swipers($timeout) {return {restrict: "EA",scope: {…

使用Jupyter记事本记录和制作.NET可视化笔记

前言&#xff1a;对于记录笔记的工具特别多&#xff0c;不过对于程序员来说&#xff0c;记录笔记程序代码运行结果演示可以同时存在&#xff0c;无疑会极大增加我们的笔记的可读性和体验感。以前在写python的时候&#xff0c;使用jupyter的体验很好&#xff0c;所以此处做一个基…

火狐上如何使用谷歌翻译插件_将Google翻译功能添加到Firefox

火狐上如何使用谷歌翻译插件Are you looking for a quick no-fuss way to translate webpages? Then you will want to take a good look at the Translate extension for Firefox. 您是否正在寻找一种快速简便的方法来翻译网页&#xff1f; 然后&#xff0c;您将需要很好地了…