[Unity3d]旋转拖动物体
生活随笔
收集整理的這篇文章主要介紹了
[Unity3d]旋转拖动物体
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
效果圖:
代碼:
using UnityEngine; using System.Collections; public class DragModel : MonoBehaviour { private float x = 0.0f; private float y = 0.0f; private float xSpeed = 800.0f; private float ySpeed = 800.0f; private float zSpeed = 160f; private float minDistence = -3; private float maxDistence = 15; void Update () { if(Input.GetMouseButton(0)) { x=Input.GetAxis("Mouse X") *xSpeed; y=Input.GetAxis("Mouse Y") *ySpeed; transform.Rotate(Vector3.up * -x *Time.deltaTime,Space.World); transform.Rotate(Vector3.right * y *Time.deltaTime,Space.World); } else if(Input.GetAxis("Mouse ScrollWheel")!=0) { float ga = Input.GetAxis("Mouse ScrollWheel"); if(transform.position.z > minDistence && transform.position.z<maxDistence||transform.position.z<=minDistence && ga<0||transform.position.z>=maxDistence && ga>0) { transform.Translate(Vector3.forward*-ga*zSpeed*Time.deltaTime,Space.World); } } } }本文轉蓬萊仙羽51CTO博客,原文鏈接:http://blog.51cto.com/dingxiaowei/1366130,如需轉載請自行聯系原作者
總結
以上是生活随笔為你收集整理的[Unity3d]旋转拖动物体的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: steam绝地求生下载流程(总是打不开s
- 下一篇: 揭秘微软指纹识别器