unity wsad 鼠标_Unity键盘WASD实现物体移动
发布日期:2021-06-24 16:47:38 浏览次数:2 分类:技术文章

本文共 1609 字,大约阅读时间需要 5 分钟。

本文实例为大家分享了Unity键盘WASD实现物体移动的具体代码,供大家参考,具体内容如下

1首先在场景中建立一个Capsule,将主摄像机拖到其物体下。

155080590915pt5080859009.jpg

2.将脚本挂在Capsule物体下,WASD 控制移动方向,空格延Y轴向上移动,F延Y轴向下移动

using System.Collections;

using System.Collections.Generic;

using UnityEngine;

public class MoveCam : MonoBehaviour

{

private Vector3 m_camRot;

private Transform m_camTransform;//摄像机Transform

private Transform m_transform;//摄像机父物体Transform

public float m_movSpeed=10;//移动系数

public float m_rotateSpeed=1;//旋转系数

private void Start()

{

m_camTransform = Camera.main.transform;

m_transform = GetComponent();

}

private void Update()

{

Control();

}

void Control()

{

if (Input.GetMouseButton(0))

{

//获取鼠标移动距离

float rh = Input.GetAxis("Mouse X");

float rv = Input.GetAxis("Mouse Y");

// 旋转摄像机

m_camRot.x -= rv * m_rotateSpeed;

m_camRot.y += rh*m_rotateSpeed;

}

m_camTransform.eulerAngles = m_camRot;

// 使主角的面向方向与摄像机一致

Vector3 camrot = m_camTransform.eulerAngles;

camrot.x = 0; camrot.z = 0;

m_transform.eulerAngles = camrot;

// 定义3个值控制移动

float xm = 0, ym = 0, zm = 0;

//按键盘W向上移动

if (Input.GetKey(KeyCode.W))

{

zm += m_movSpeed * Time.deltaTime;

}

else if (Input.GetKey(KeyCode.S))//按键盘S向下移动

{

zm -= m_movSpeed * Time.deltaTime;

}

if (Input.GetKey(KeyCode.A))//按键盘A向左移动

{

xm -= m_movSpeed * Time.deltaTime;

}

else if (Input.GetKey(KeyCode.D))//按键盘D向右移动

{

xm += m_movSpeed * Time.deltaTime;

}

if (Input.GetKey(KeyCode.Space) && m_transform.position.y <= 3)

{

ym+=m_movSpeed * Time.deltaTime;

}

if (Input.GetKey(KeyCode.F) && m_transform.position.y >= 1)

{

ym -= m_movSpeed * Time.deltaTime;

}

m_transform.Translate(new Vector3(xm,ym,zm),Space.Self);

}

}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

转载地址:https://blog.csdn.net/weixin_33946505/article/details/113547411 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:mysql日志解析table_map_MySQL二进制日志分析-TABLE_MAP_EVENT
下一篇:strtus2改成springboot_spring、springmvc、springboot、struts区别

发表评论

最新留言

第一次来,支持一个
[***.219.124.196]2024年04月19日 18时30分12秒