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

相关文章

hdu1043(八数码问题,广搜 + hash(实现状态压缩) )

利用康拓展开将一个排列映射成一个自然数,然后就变成了普通的广搜题。 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#inclu

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

【Prometheus】PromQL向量匹配实现不同标签的向量数据进行运算

✨✨ 欢迎大家来到景天科技苑✨✨ 🎈🎈 养成好习惯,先赞后看哦~🎈🎈 🏆 作者简介:景天科技苑 🏆《头衔》:大厂架构师,华为云开发者社区专家博主,阿里云开发者社区专家博主,CSDN全栈领域优质创作者,掘金优秀博主,51CTO博客专家等。 🏆《博客》:Python全栈,前后端开发,小程序开发,人工智能,js逆向,App逆向,网络系统安全,数据分析,Django,fastapi

让树莓派智能语音助手实现定时提醒功能

最初的时候是想直接在rasa 的chatbot上实现,因为rasa本身是带有remindschedule模块的。不过经过一番折腾后,忽然发现,chatbot上实现的定时,语音助手不一定会有响应。因为,我目前语音助手的代码设置了长时间无应答会结束对话,这样一来,chatbot定时提醒的触发就不会被语音助手获悉。那怎么让语音助手也具有定时提醒功能呢? 我最后选择的方法是用threading.Time

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

C#实战|大乐透选号器[6]:实现实时显示已选择的红蓝球数量

哈喽,你好啊,我是雷工。 关于大乐透选号器在前面已经记录了5篇笔记,这是第6篇; 接下来实现实时显示当前选中红球数量,蓝球数量; 以下为练习笔记。 01 效果演示 当选择和取消选择红球或蓝球时,在对应的位置显示实时已选择的红球、蓝球的数量; 02 标签名称 分别设置Label标签名称为:lblRedCount、lblBlueCount

Kubernetes PodSecurityPolicy:PSP能实现的5种主要安全策略

Kubernetes PodSecurityPolicy:PSP能实现的5种主要安全策略 1. 特权模式限制2. 宿主机资源隔离3. 用户和组管理4. 权限提升控制5. SELinux配置 💖The Begin💖点点关注,收藏不迷路💖 Kubernetes的PodSecurityPolicy(PSP)是一个关键的安全特性,它在Pod创建之前实施安全策略,确保P

【学习笔记】 陈强-机器学习-Python-Ch15 人工神经网络(1)sklearn

系列文章目录 监督学习:参数方法 【学习笔记】 陈强-机器学习-Python-Ch4 线性回归 【学习笔记】 陈强-机器学习-Python-Ch5 逻辑回归 【课后题练习】 陈强-机器学习-Python-Ch5 逻辑回归(SAheart.csv) 【学习笔记】 陈强-机器学习-Python-Ch6 多项逻辑回归 【学习笔记 及 课后题练习】 陈强-机器学习-Python-Ch7 判别分析 【学

防近视护眼台灯什么牌子好?五款防近视效果好的护眼台灯推荐

在家里,灯具是属于离不开的家具,每个大大小小的地方都需要的照亮,所以一盏好灯是必不可少的,每个发挥着作用。而护眼台灯就起了一个保护眼睛,预防近视的作用。可以保护我们在学习,阅读的时候提供一个合适的光线环境,保护我们的眼睛。防近视护眼台灯什么牌子好?那我们怎么选择一个优秀的护眼台灯也是很重要,才能起到最大的护眼效果。下面五款防近视效果好的护眼台灯推荐: 一:六个推荐防近视效果好的护眼台灯的

系统架构师考试学习笔记第三篇——架构设计高级知识(20)通信系统架构设计理论与实践

本章知识考点:         第20课时主要学习通信系统架构设计的理论和工作中的实践。根据新版考试大纲,本课时知识点会涉及案例分析题(25分),而在历年考试中,案例题对该部分内容的考查并不多,虽在综合知识选择题目中经常考查,但分值也不高。本课时内容侧重于对知识点的记忆和理解,按照以往的出题规律,通信系统架构设计基础知识点多来源于教材内的基础网络设备、网络架构和教材外最新时事热点技术。本课时知识