Unity3D实现控制摄像机移动
作者:JayW就是我吖 时间:2022-06-23 20:44:04
本文实例为大家分享了Unity3D实现控制摄像机移动的具体代码,供大家参考,具体内容如下
最近公司的几个项目开发内容基本相同,很多脚本直接复制过来就可以拼接项目。之前一直是代码爱好者,能自己敲的绝对不去复制粘贴。但是开发速度确实是被耽误了,所以接下来打算把开发中常用的脚本都发到博客上。自己需要的时候直接拿来。也希望能帮到你们。
unity编辑器中按住鼠标右键,在通过控制键盘的wasdqe键可以自由控制视野。
下面就是实现操作的代码:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
//巡游模式摄像机控制
public class CameraMove : MonoBehaviour
{
public static CameraMove Instance = null;
private Vector3 dirVector3;
private Vector3 rotaVector3;
private float paramater = 0.1f;
//旋转参数
private float xspeed = -0.05f;
private float yspeed = 0.1f;
private float dis;
void Awake ()
{
Instance = this;
}
private void Start()
{
rotaVector3 = transform.localEulerAngles;
dis = UIFuc.Instance.Dis;
}
// Update is called once per frame
void FixedUpdate ()
{
//旋转
if (Input.GetMouseButton(1))
{
rotaVector3.y += Input.GetAxis("Horizontal") * yspeed;
rotaVector3.x += Input.GetAxis("Vertical") * xspeed;
transform.rotation = Quaternion.Euler(rotaVector3);
}
//移动
dirVector3 =Vector3.zero;
if (Input.GetKey(KeyCode.W))
{
if(Input.GetKey(KeyCode.LeftShift)) dirVector3.z = 3;
else dirVector3.z = 1;
}
if (Input.GetKey(KeyCode.S))
{
if (Input.GetKey(KeyCode.LeftShift)) dirVector3.z = -3;
else dirVector3.z = -1;
}
if (Input.GetKey(KeyCode.A))
{
if (Input.GetKey(KeyCode.LeftShift)) dirVector3.x = -3;
else dirVector3.x = -1;
}
if (Input.GetKey(KeyCode.D))
{
if (Input.GetKey(KeyCode.LeftShift)) dirVector3.x = 3;
else dirVector3.x = 1;
}
if (Input.GetKey(KeyCode.Q))
{
if (Input.GetKey(KeyCode.LeftShift)) dirVector3.y = -3;
else dirVector3.y = -1;
}
if (Input.GetKey(KeyCode.E))
{
if (Input.GetKey(KeyCode.LeftShift)) dirVector3.y = 3;
else dirVector3.y = 1;
}
transform.Translate(dirVector3 * paramater,Space.Self);
//限制摄像机范围
transform.position = Vector3.ClampMagnitude(transform.position, dis);
}
}
由于项目需要限制摄像机的移动范围,所以我在最后加上了限制的代码。
来源:https://blog.csdn.net/qq_33994566/article/details/78294295
标签:Unity,摄像机,移动
0
投稿
猜你喜欢
DevExpress根据条件设置GridControl RepositoryItem是否可编辑
2023-03-21 14:53:30
Java SE求解汉诺塔问题的示例代码
2022-05-10 23:44:30
Spring如何将bean添加到容器中
2021-08-07 08:48:06
消息队列-kafka消费异常问题
2023-02-02 07:08:05
Android 中ScrollView嵌套GridView,ListView的实例
2023-06-15 15:49:56
C#中 MessageBox的使用技巧
2023-06-25 16:15:48
实现Android 滑动退出Activity的功能
2023-04-24 03:00:34
c语言版本二叉树基本操作示例(先序 递归 非递归)
2023-03-17 23:40:25
C#构造函数详解
2023-02-25 22:38:50
Android获取手机电池电量用法实例
2021-08-05 23:14:34
Jenkins使用Gradle编译Android项目详解
2021-12-30 22:26:30
关于maven全局配置文件settings.xml解析
2023-01-08 09:04:04
viewpager+photoview实现图片查看器
2022-10-30 11:46:05
SpringBoot跨域Access-Control-Allow-Origin实现解析
2023-11-28 23:04:34
Android关于FTP文件上传和下载功能详解
2021-06-02 18:15:55
C#隐藏手机号、邮箱等敏感信息的实现方法
2023-12-08 17:17:45
C#实现动态执行字符串脚本(优化版)的示例代码
2022-06-10 19:13:54
C#实现两接口中同名方法实例分析
2022-09-08 13:04:42
spring aop execution表达式的用法
2023-08-22 05:39:24
Java StringBuffer与StringBuilder有什么区别
2022-12-15 22:35:12