Unity解决:3D开发模式第三人称视角 WASD控制角色移动旋转 使用InputSystem

Unity版本:2019.2.3f1

目录

 安装InputSystem

1:创建InputHander.cs脚本 挂载到Player物体上 获取键盘输入WADS

2.创建PlayerLocomotion.cs挂载到Player物体上,控制物体移动转向


 

 安装InputSystem

菜单栏/Window/Package Manager/Input System

 工程面板内 右键-->创建Input Actions 

选中New Controls改名为PlayerControls 然后属性 面板按下Edit asset

 Action Maps添加:PlayerMovement

Actions添加:New action 改名为MovementAction 

Properties项    修改ActionType=Pass Through

                        修改ControlType= Vector2

在MovementAction项点击+号 选择Add 2D Vector Composite

 

 生成WASD

绑定Up、Down、Left、Right,如此类推

回到PlayerControls属性面板 勾选Generate C# Class[*]

 

 工程面板就生成了一份 PlayerControls.cs 脚本,先不管它 

 

 

然后创建2个脚本挂到Player物体上

1:创建InputHander.cs脚本 挂载到Player物体上 获取键盘输入WADS

using System.Collections;
using System.Collections.Generic;
using UnityEngine;public class InputHander : MonoBehaviour
{public float horizontal;public float vertical;public float moveAmount;public float mouseX;public float mouseY;PlayerControls inputActions;//声明 InputSystem的脚本对象Vector2 movementInput;//存储 WASD输入的值public void OnEnable(){//获取设备上的输入if (inputActions == null){inputActions = new PlayerControls();//绑定输入的值inputActions.PlayerMovement.MovementAction.performed += outputActions => movementInput = outputActions.ReadValue<Vector2>();}inputActions.Enable();//启用}public void OnDisable(){inputActions.Disable();//禁用}public void TickInputt(float delta){MoveInput(delta);}public void MoveInput(float delta) {horizontal = movementInput.x;vertical = movementInput.y;moveAmount = Mathf.Clamp01(Mathf.Abs(horizontal) + Mathf.Abs(vertical));}}

2.创建PlayerLocomotion.cs挂载到Player物体上,控制物体移动转向

using System.Collections;
using System.Collections.Generic;
using UnityEngine;public class PlayerLocomotion : MonoBehaviour
{InputHander inputHander;Vector3 moveDirection;public CapsuleCollider capsuleCollider;public new Rigidbody rigidbody;Vector2 movementInput;//存储 WASD输入的值Transform cameraObject;[HideInInspector]public Transform myTransform;[Header("Stats")][SerializeField]float movementSpeed = 5;[SerializeField]float rotationSpeed = 10;// Start is called before the first frame updatevoid Start(){rigidbody = GetComponent<Rigidbody>();if (rigidbody==null){rigidbody = gameObject.AddComponent<Rigidbody>();rigidbody.constraints = RigidbodyConstraints.FreezeRotation;}capsuleCollider = GetComponent<CapsuleCollider>();if (capsuleCollider==null){capsuleCollider = gameObject.AddComponent<CapsuleCollider>();capsuleCollider.center = new Vector3(0, 1, 0);capsuleCollider.radius = 0.5f;capsuleCollider.height = 2;capsuleCollider.direction = 1;}inputHander = GetComponent<InputHander>();cameraObject = Camera.main.transform;myTransform = transform;}// Update is called once per framevoid Update(){float delta = Time.deltaTime;inputHander.TickInputt(delta);moveDirection = cameraObject.forward * inputHander.vertical;moveDirection += cameraObject.right * inputHander.horizontal;moveDirection.Normalize();float speed = movementSpeed;moveDirection *= speed;//移动Vector3 projectedVelocity = Vector3.ProjectOnPlane(moveDirection, new Vector3(0, 0, 0));rigidbody.velocity = projectedVelocity;HandleRotation(delta);}//转向private void HandleRotation(float delta) {Vector3 targerDir = Vector3.zero;targerDir = cameraObject.forward * inputHander.vertical;targerDir += cameraObject.right * inputHander.horizontal;targerDir.Normalize();targerDir.y = 0;if (targerDir == Vector3.zero){targerDir = myTransform.forward;}Quaternion tr = Quaternion.LookRotation(targerDir);Quaternion targetRotation = Quaternion.Slerp(myTransform.rotation, tr, rotationSpeed * delta);myTransform.rotation = targetRotation;}
}

完成

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

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

相关文章

一款打工人必备的电脑端自律软件!!冲鸭打工人!!

你&#xff01;有没有渴望进步&#xff01;&#xff01; 你&#xff01;有没有渴望变强&#xff01;&#xff01;&#xff01; 成为大佬&#xff01;&#xff01;&#xff01;超越巨佬&#xff01;&#xff01;&#xff01; 这就是一款为这样的你量身定做的程序&#xff1a;输入…

solidity0.8.0的应用案例9:代理合约

代码由OpenZeppelin的Proxy合约简化而来。 代理模式 Solidity合约部署在链上之后,代码是不可变的(immutable)。这样既有优点,也有缺点: 优点:安全,用户知道会发生什么(大部分时候)。坏处:就算合约中存在bug,也不能修改或升级,只能部署新合约。但是新合约的地址与…

数字孪生技术对旅游行业能起到什么作用?

随着疫情对我们生活影响的淡化&#xff0c;旅游行业迎来了新的春天&#xff0c;暑期更是旅游行业的小高潮&#xff0c;那么作为一个钻研数字孪生行业的小白&#xff0c;本文就着旅游的话题以及对旅游的渴望带大家一起探讨一下数字孪生对智慧旅游发展的作用~ 数字孪生作为一种虚…

DBi Tech Studio Controls for .NET Crack

DBi Tech Studio Controls for .NET Crack Studio Controls for.NET为企业开发人员提供了一套全面的Windows布局和信息表示软件元素&#xff0c;面向搜索业务分析商业调度和UI表示控制器的程序员。Studio Controls for.NET包含17个免版税的.NET Windows窗体控件&#xff0c;用于…

SpringBoot 学习(04):Idea 中控制启动命令的详细过程 环境区分案例

IDEA 启动SpringBoot的命令 C:\Users\Administrator\.jdks\corretto-17.0.8\bin\java.exe -XX:TieredStopAtLevel1 -Dspring.output.ansi.enabledalways -Dcom.sun.management.jmxremote -Dspring.jmx.enabledtrue -Dspring.liveBeansView.mbeanDomain -Dspring.applica…

为什么需要单元测试?

为什么需要单元测试&#xff1f; 从产品角度而言&#xff0c;常规的功能测试、系统测试都是站在产品局部或全局功能进行测试&#xff0c;能够很好地与用户的需要相结合&#xff0c;但是缺乏了对产品研发细节&#xff08;特别是代码细节的理解&#xff09;。 从测试人员角度而言…

vue3 tailwindcss的使用

首先安装依赖&#xff1a; npm install -D tailwindcsslatest postcsslatest autoprefixerlatestnpm i -D unocss 然后vite.config.ts中 引入 import Unocss from unocss/viteexport default defineConfig({plugins: [Unocss(),],})终端执行&#xff1a; npx tailwindcss in…

手写模拟SpringBoot核心流程(二):实现Tomcat和Jetty的切换

实现Tomcat和Jetty的切换 前言 上一篇文章我们聊到&#xff0c;SpringBoot中内置了web服务器&#xff0c;包括Tomcat、Jetty&#xff0c;并且实现了SpringBoot启动Tomcat的流程。 那么SpringBoot怎样自动切换成Jetty服务器呢&#xff1f; 接下来我们继续学习如何实现Tomcat…

idea连接linux远程docker详细教程操作

1&#xff1a;修改docker配置文件docker.service vi /usr/lib/systemd/system/docker.service2&#xff1a;找到 ExecStart&#xff0c;在最后面添加 -H tcp://0.0.0.0:2375 # for containers run by docker ExecStart/usr/bin/dockerd -H fd:// --containerd/run/containerd/…

基于Jenkins构建生产CICD环境(第三篇)

目录 基于Jenkins自动打包并部署docker环境 1、安装docker-ce 2、阿里云镜像加速器 3、构建tomcat 基础镜像 4、构建一个Maven项目 基于Jenkins自动化部署PHP环境 基于rsync部署 基于Jenkins自动打包并部署docker环境 1、安装docker-ce 在192.168.2.123 机器上&#x…

无涯教程-PHP - File 函数

文件系统功能用于访问和操纵文件系统&#xff0c;PHP为您提供了操纵文件的所有功能。 运行时配置 这些功能的行为受php.ini中的设置影响。 NameDefaultChangeableChangelogallow_url_fopen"1"PHP_INI_ALLPHP_INI_ALL in PHP < 4.3.4. PHP_INI_SYSTEM in PHP &l…