博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Unity3D 控制物体移动、旋转、缩放
阅读量:5259 次
发布时间:2019-06-14

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

原创文章如需转载请注明:转载自  QQ群:【119706192本文链接地址:

Transform基本移动函数:

1.指定方向移动:

//移动速度 float TranslateSpeed = 10f;//Vector3.forward 表示“向前”transform.Translate(Vector3.forward *TranslateSpeed);

2.全方向移动:

//x轴移动速度移动速度 float xSpeed = -5f;//z轴移动速度移动速度 float  zSpeed = 10f;//向x轴移动xSpeed,同时想z轴移动zSpeed,y轴不动 transform.Translate(xSpeed,0,zSpeed);

3.重置坐标:

//x轴坐标 float xPostion = -5f;//z轴坐标 float zPostion = 10f;//直接将当前物体移动到x轴为xPostion,y轴为0,z轴为zPostion的三维空间位置。transform.position = Vector3(xPostion,0,zPostion);

输入控制:

1.输入指定按键:

//按下键盘“上方向键”if(Input.GetKey ("up"))  print("Up!");//按下键盘“W键”if(Input.GetKey(KeyCode.W);)  print("W!");

2.鼠标控制

//按下鼠标左键(0对应左键 , 1对应右键 , 2对应中键) if(Input.GetMouseButton(0))  print("Mouse Down!"); Input.GetAxis("Mouse X");//鼠标横向增量(横向移动)  Input.GetAxis("Mouse Y");//鼠标纵向增量(纵向移动)

3.获取轴:

//水平轴/垂直轴 (控制器和键盘输入时此值范围在-1到1之间)Input.GetAxis("Horizontal");//横向 Input.GetAxis ("Vertical");//纵向

按住鼠标拖动物体旋转和自定义角度旋转物体:

 

float speed = 100.0f;float x;float z;void Update () {  if(Input.GetMouseButton(0)){
//鼠标按着左键移动     y = Input.GetAxis("Mouse X") * Time.deltaTime * speed;     x = Input.GetAxis("Mouse Y") * Time.deltaTime * speed;   }else{    x = y = 0 ;  }    //旋转角度(增加)  transform.Rotate(new Vector3(x,y,0));  /**---------------其它旋转方式----------------**/  //transform.Rotate(Vector3.up *Time.deltaTime * speed);//绕Y轴 旋转   //用于平滑旋转至自定义目标   pinghuaxuanzhuan();}//平滑旋转至自定义角度 void OnGUI(){  if(GUI.Button(Rect(Screen.width - 110,10,100,50),"set Rotation")){    //自定义角度    targetRotation = Quaternion.Euler(45.0f,45.0f,45.0f);    // 直接设置旋转角度     //transform.rotation = targetRotation;    // 平滑旋转至目标角度     iszhuan = true;  }}bool iszhuan= false;Quaternion targetRotation;void pinghuaxuanzhuan(){  if(iszhuan){    transform.rotation = Quaternion.Slerp(transform.rotation, targetRotation, Time.deltaTime * 3);  }}

 

 

 

 

 

键盘控制物体缩放:

float speed = 5.0f;float x;float z;void Update () {    x = Input.GetAxis("Horizontal") * Time.deltaTime * speed;    //水平               z = Input.GetAxis("Vertical") * Time.deltaTime * speed;      //垂直//"Fire1","Fine2","Fine3"映射到Ctrl,Alt,Cmd键和鼠标的三键或腰杆按钮。新的输入轴可以在Input Manager中添加。    transform.localScale += new Vector3(x, 0, z);          /**---------------重新设置角度(一步到位)----------------**/    //transform.localScale = new Vector3(x, 0, z);}

转载于:https://www.cnblogs.com/fortomorrow/archive/2012/10/30/unity05.html

你可能感兴趣的文章
URAL 1002 Phone Numbers(KMP+最短路orDP)
查看>>
web_day4_css_宽度
查看>>
electron入门心得
查看>>
格而知之2:UIView的autoresizingMask属性探究
查看>>
我的Hook学习笔记
查看>>
js中的try/catch
查看>>
寄Android开发Gradle你需要知道的知识
查看>>
简述spring中常有的几种advice?
查看>>
整理推荐的CSS属性书写顺序
查看>>
ServerSocket和Socket通信
查看>>
css & input type & search icon
查看>>
源代码的下载和编译读后感
查看>>
Kafka学习笔记
查看>>
Octotree Chrome安装与使用方法
查看>>
Windows 环境下基于 Redis 的 Celery 任务调度模块的实现
查看>>
趣谈Java变量的可见性问题
查看>>
C# 强制关闭当前程序进程(完全Kill掉不留痕迹)
查看>>
ssm框架之将数据库的数据导入导出为excel文件
查看>>
语音识别中的MFCC的提取原理和MATLAB实现
查看>>
验证组件FluentValidation的使用示例
查看>>