unity2D笔记-实现饥荒效果的2.5D游戏

2024-03-26 01:40

本文主要是介绍unity2D笔记-实现饥荒效果的2.5D游戏,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

教程来自B站大佬:https://www.bilibili.com/video/BV1DT4y1A7DJ?spm_id_from=333.337.search-card.all.click&vd_source=19df42746a97e8a5f29ac78388f521d5
在这里主要有2点感悟:
1.对于混合树了解更深刻了
2.人物向量转换关系
3.协程的使用

1.混合树控制人物移动

通过控制输入的x,y向量来控制人物的动画
在这里插入图片描述

2.物体方向跟随镜头进行调整旋转角度

让子物体的旋转角度与相机旋转角度一致

using System.Collections;
using System.Collections.Generic;
using UnityEngine;public class FacingCarmera : MonoBehaviour
{Transform[] childs;// Start is called before the first frame updatevoid Start(){childs = new Transform[transform.childCount];for (int i = 0; i < transform.childCount; i++){childs[i] = transform.GetChild(i);}}// Update is called once per framevoid Update(){for(int i = 0; i < childs.Length; i++){childs[i].rotation = Camera.main.transform.rotation;//让节点上的子物体与相机旋转角一致}}
}

3.通过手柄摇杆LB RB来转动视角

视角转动脚本

using System.Collections;
using System.Collections.Generic;
using SK.Framework;
using UnityEngine;public class RotateCarmera: MonoBehaviour
{public float rotateTime = 0.2f;//旋转所花费时间private Transform player;private bool isRotating = false;void Start(){player = GameObject.FindGameObjectWithTag("Player").transform;}// Update is called once per framevoid Update(){transform.position = player.position;Rotate();}void Rotate(){if (Input.GetKeyDown(KeyCode.Q) ||Input.GetKeyDown(XBox.LB) && !isRotating){StartCoroutine(RotateAround(-45, rotateTime));}if (Input.GetKeyDown(KeyCode.E)|| Input.GetKeyDown(XBox.RB) && !isRotating){StartCoroutine(RotateAround(45, rotateTime));}}//使用协程函数来更新镜头旋转角度 IEnumerator RotateAround(float angel,float time){float number = 60 * time;float nextAngel = angel / number;isRotating = true;for(int i = 0; i < number; i++){transform.Rotate(new Vector3(0, 0, nextAngel));yield return new WaitForFixedUpdate();//暂停执行 等到下一帧时继续执行下个循环//默认FixedUpdate()一秒更新60帧//使用其他频率 修改number前帧数 例如100 这里使用waitforseconds(0.01f)}isRotating = false;}
}

手柄摇杆对照脚本

using UnityEngine;namespace SK.Framework
{/// <summary>/// XBox按键/// </summary>public class XBox{/// <summary>/// 左侧摇杆水平轴/// X axis/// </summary>public const string LeftStickHorizontal = "LeftStickHorizontal";/// <summary>/// 左侧摇杆垂直轴/// Y axis/// </summary>public const string LeftStickVertical = "LeftStickVertical";/// <summary>/// 右侧摇杆水平轴/// 4th axis/// </summary>public const string RightStickHorizontal = "RightStickHorizontal";/// <summary>/// 右侧摇杆垂直轴/// 5th axis/// </summary>public const string RightStickVertical = "RightStickVertical";/// <summary>/// 十字方向盘水平轴/// 6th axis/// </summary>public const string DPadHorizontal = "DPadHorizontal";/// <summary>/// 十字方向盘垂直轴/// 7th axis/// </summary>public const string DPadVertical = "DPadVertical";/// <summary>/// LT/// 9th axis/// </summary>public const string LT = "LT";/// <summary>/// RT/// 10th axis/// </summary>public const string RT = "RT";/// <summary>/// 左侧摇杆按键/// joystick button 8/// </summary>public const KeyCode LeftStick = KeyCode.JoystickButton8;/// <summary>/// 右侧摇杆按键/// joystick button 9/// </summary>public const KeyCode RightStick = KeyCode.JoystickButton9;/// <summary>/// A键/// joystick button 0/// </summary>public const KeyCode A = KeyCode.JoystickButton0;/// <summary>/// B键/// joystick button 1/// </summary>public const KeyCode B = KeyCode.JoystickButton1;/// <summary>/// X键/// joystick button 2/// </summary>public const KeyCode X = KeyCode.JoystickButton2;/// <summary>/// Y键/// joystick button 3/// </summary>public const KeyCode Y = KeyCode.JoystickButton3;/// <summary>/// LB键/// joystick button 4/// </summary>public const KeyCode LB = KeyCode.JoystickButton4;/// <summary>/// RB键/// joystick button 5/// </summary>public const KeyCode RB = KeyCode.JoystickButton5;/// <summary>/// View视图键/// joystick button 6/// </summary>public const KeyCode View = KeyCode.JoystickButton6;/// <summary>/// Menu菜单键/// joystick button 7/// </summary>public const KeyCode Menu = KeyCode.JoystickButton7;}
}

4.人物的控制脚本

using System.Collections;
using System.Collections.Generic;
using UnityEngine;public class Player : MonoBehaviour
{public float speed;new private Rigidbody2D rigidbody;private Animator animator;private float inputX, inputY;//private Vector3 offset;void Start(){// offset = Camera.main.transform.position - transform.position; rigidbody = GetComponent<Rigidbody2D>();animator = GetComponent<Animator>();}// Update is called once per framevoid Update(){inputX = Input.GetAxisRaw("Horizontal");inputY = Input.GetAxisRaw("Vertical");Vector2 input = (inputX*transform.right + inputY*transform.up).normalized; //标准化到0 1 rigidbody.velocity = input * speed;if (input != Vector2.zero){animator.SetBool("IsMoving", true);}else{animator.SetBool("IsMoving", false);}animator.SetFloat("InputX", inputX);animator.SetFloat("InputY", inputY);//  Camera.main.transform.position = transform.position + offset;}
}

修改 Vector2 input = new Vector2(inputX, inputY).normalized;
到 的解释:
inputX和inputY是基于世界坐标系的参数,如果当自身坐标系和世界坐标系发生偏转时(按下LB或者RB)如下图所示,使用INPUTX 的参数也仅仅会让物体基于世界坐标移动,人物斜着走。
在这里插入图片描述
因此需要对人物基于自身坐标进行矫正:
假设人物要向其自身坐标系的Y轴移动
在这里插入图片描述
归一化是保证速度不会跟随方向的变化而动态变化,详细见相关文章:为什么要使用Vector2().normalized()

这篇关于unity2D笔记-实现饥荒效果的2.5D游戏的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/846920

相关文章

C++对象布局及多态实现探索之内存布局(整理的很多链接)

本文通过观察对象的内存布局,跟踪函数调用的汇编代码。分析了C++对象内存的布局情况,虚函数的执行方式,以及虚继承,等等 文章链接:http://dev.yesky.com/254/2191254.shtml      论C/C++函数间动态内存的传递 (2005-07-30)   当你涉及到C/C++的核心编程的时候,你会无止境地与内存管理打交道。 文章链接:http://dev.yesky

Tolua使用笔记(上)

目录   1.准备工作 2.运行例子 01.HelloWorld:在C#中,创建和销毁Lua虚拟机 和 简单调用。 02.ScriptsFromFile:在C#中,对一个lua文件的执行调用 03.CallLuaFunction:在C#中,对lua函数的操作 04.AccessingLuaVariables:在C#中,对lua变量的操作 05.LuaCoroutine:在Lua中,

AssetBundle学习笔记

AssetBundle是unity自定义的资源格式,通过调用引擎的资源打包接口对资源进行打包成.assetbundle格式的资源包。本文介绍了AssetBundle的生成,使用,加载,卸载以及Unity资源更新的一个基本步骤。 目录 1.定义: 2.AssetBundle的生成: 1)设置AssetBundle包的属性——通过编辑器界面 补充:分组策略 2)调用引擎接口API

《offer来了》第二章学习笔记

1.集合 Java四种集合:List、Queue、Set和Map 1.1.List:可重复 有序的Collection ArrayList: 基于数组实现,增删慢,查询快,线程不安全 Vector: 基于数组实现,增删慢,查询快,线程安全 LinkedList: 基于双向链实现,增删快,查询慢,线程不安全 1.2.Queue:队列 ArrayBlockingQueue:

通过SSH隧道实现通过远程服务器上外网

搭建隧道 autossh -M 0 -f -D 1080 -C -N user1@remotehost##验证隧道是否生效,查看1080端口是否启动netstat -tuln | grep 1080## 测试ssh 隧道是否生效curl -x socks5h://127.0.0.1:1080 -I http://www.github.com 将autossh 设置为服务,隧道开机启动

时序预测 | MATLAB实现LSTM时间序列未来多步预测-递归预测

时序预测 | MATLAB实现LSTM时间序列未来多步预测-递归预测 目录 时序预测 | MATLAB实现LSTM时间序列未来多步预测-递归预测基本介绍程序设计参考资料 基本介绍 MATLAB实现LSTM时间序列未来多步预测-递归预测。LSTM是一种含有LSTM区块(blocks)或其他的一种类神经网络,文献或其他资料中LSTM区块可能被描述成智能网络单元,因为

vue项目集成CanvasEditor实现Word在线编辑器

CanvasEditor实现Word在线编辑器 官网文档:https://hufe.club/canvas-editor-docs/guide/schema.html 源码地址:https://github.com/Hufe921/canvas-editor 前提声明: 由于CanvasEditor目前不支持vue、react 等框架开箱即用版,所以需要我们去Git下载源码,拿到其中两个主

android一键分享功能部分实现

为什么叫做部分实现呢,其实是我只实现一部分的分享。如新浪微博,那还有没去实现的是微信分享。还有一部分奇怪的问题:我QQ分享跟QQ空间的分享功能,我都没配置key那些都是原本集成就有的key也可以实现分享,谁清楚的麻烦详解下。 实现分享功能我们可以去www.mob.com这个网站集成。免费的,而且还有短信验证功能。等这分享研究完后就研究下短信验证功能。 开始实现步骤(新浪分享,以下是本人自己实现

基于Springboot + vue 的抗疫物质管理系统的设计与实现

目录 📚 前言 📑摘要 📑系统流程 📚 系统架构设计 📚 数据库设计 📚 系统功能的具体实现    💬 系统登录注册 系统登录 登录界面   用户添加  💬 抗疫列表展示模块     区域信息管理 添加物资详情 抗疫物资列表展示 抗疫物资申请 抗疫物资审核 ✒️ 源码实现 💖 源码获取 😁 联系方式 📚 前言 📑博客主页:

探索蓝牙协议的奥秘:用ESP32实现高质量蓝牙音频传输

蓝牙(Bluetooth)是一种短距离无线通信技术,广泛应用于各种电子设备之间的数据传输。自1994年由爱立信公司首次提出以来,蓝牙技术已经经历了多个版本的更新和改进。本文将详细介绍蓝牙协议,并通过一个具体的项目——使用ESP32实现蓝牙音频传输,来展示蓝牙协议的实际应用及其优点。 蓝牙协议概述 蓝牙协议栈 蓝牙协议栈是蓝牙技术的核心,定义了蓝牙设备之间如何进行通信。蓝牙协议