美文网首页
Vuforia学习之旋转缩放

Vuforia学习之旋转缩放

作者: HoyaWhite | 来源:发表于2016-08-09 14:50 被阅读299次
    1. 新建C#脚本
    2. 把脚本附给模型(支持缩放和旋转)
    using UnityEngine;
    using System.Collections;
    
    public class Move_Lhy : MonoBehaviour
    {
        //  public Transform target;                                        1
        float distance = 30f;
        float xSpeed = 150f;
        float ySpeed = 150f;
        float yMinLimit = -180f;
        float yMaxLimit = 180f;
        float x = 0f;
        float y = 0f;
        Vector2 oldPosition1;
        Vector2 oldPosition2;
        //  private bool flag_Roable = true;//自动旋转标志                        2
        private System.DateTime oldTime;
        private System.DateTime nowTime;
        // Use this for initialization
        void Start()
        {
            transform.eulerAngles = new Vector3 (0,-90,0);
            Vector3 angles = transform.eulerAngles;
            x = angles.y;
            y = angles.x;
            if (GetComponent<Rigidbody>())
            {
                GetComponent<Rigidbody>().freezeRotation = true;
            }
            oldTime = System.DateTime.Now;
        }
        
        
        // Update is called once per frame
        void Update()
        {
            nowTime = System.DateTime.Now;
            System.TimeSpan ts1 = new System.TimeSpan(oldTime.Ticks);
            System.TimeSpan ts2 = new System.TimeSpan(nowTime.Ticks);
            
            System.TimeSpan ts = ts2.Subtract(ts1).Duration();
            if (ts.Seconds > 8 && !Input.anyKey)
            {
                //          flag_Roable = true;                                     3
                oldTime = System.DateTime.Now;
            }
            if (Input.anyKey)
            {
                
                if (Input.touchCount == 1)
                {
                    if (Input.GetTouch(0).phase == TouchPhase.Moved)
                    {
                        //x += Input.GetAxis("Mouse X") * xSpeed * 0.02f;
                        //y -= Input.GetAxis("Mouse Y") * ySpeed * 0.02f;
                        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);
                    }
                }
                
                if (Input.touchCount > 1)
                {
                    if (Input.GetTouch(0).phase == TouchPhase.Moved || Input.GetTouch(1).phase == TouchPhase.Moved)
                    {
                        Vector2 tempPosition1 = Input.GetTouch(0).position;
                        Vector2 tempPosition2 = Input.GetTouch(1).position;
                        if (isEnlarge(oldPosition1, oldPosition2, tempPosition1, tempPosition2))
                        {
                            float oldScale = transform.localScale.x;
                            float newScale = oldScale * 1.025f;
                            transform.localScale = new Vector3(newScale, newScale, newScale);
                        }
                        else
                        {
                            float oldScale = transform.localScale.x;
                            float newScale = oldScale / 1.025f;
                            transform.localScale = new Vector3(newScale, newScale, newScale);
                            
                        }
                        //备份上一次触摸点的位置,用于对比
                        oldPosition1 = tempPosition1;
                        oldPosition2 = tempPosition2;
                    }
                }
            }
            
        }
        
        bool isEnlarge(Vector2 oP1, Vector2 oP2, Vector2 nP1, Vector2 nP2)
        {
            //函数传入上一次触摸两点的位置与本次触摸两点的位置计算出用户的手势  
            var leng1 = Mathf.Sqrt((oP1.x - oP2.x) * (oP1.x - oP2.x) + (oP1.y - oP2.y) * (oP1.y - oP2.y));
            var leng2 = Mathf.Sqrt((nP1.x - nP2.x) * (nP1.x - nP2.x) + (nP1.y - nP2.y) * (nP1.y - nP2.y));
            if (leng1 < leng2)
            {
                //放大手势  
                return true;
            }
            else
            {
                //缩小手势  
                return false;
            }
        }
    }
    

    相关文章

      网友评论

          本文标题:Vuforia学习之旋转缩放

          本文链接:https://www.haomeiwen.com/subject/igzsjttx.html