Android 3D模型展示

开发工具:Unity3d 2017.3       Android Studio 3.       Visual studio 2017

开发语言 : C#  , java

3D场景,本人做的是一个简单的3D海岛场景,里面有山脉,椰子树,草 岛周围是海,海水可以动,虽然效果不明显。

下面是单指拖动,双指放大缩小的脚本代码

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class effect2 : MonoBehaviour {

        private float speed = 0.1f;
        private int isforward;//标记摄像机的移动方向
        //记录两个手指的旧位置
        private Vector2 oposition1 = new Vector2();
        private Vector2 oposition2 = new Vector2();

        Vector2 m_screenPos = new Vector2(); //记录手指触碰的位置

        //用于判断是否放大
        bool isEnlarge(Vector2 oP1, Vector2 oP2, Vector2 nP1, Vector2 nP2)
        {
            //函数传入上一次触摸两点的位置与本次触摸两点的位置计算出用户的手势
            float leng1 = Mathf.Sqrt((oP1.x - oP2.x) * (oP1.x - oP2.x) + (oP1.y - oP2.y) * (oP1.y - oP2.y));
            float 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;
            }
        }

        void Start()
        {
            Input.multiTouchEnabled = true;//开启多点触碰
        }

        void Update()
        {
            if (Input.touchCount <= 0)
                return;
            if (Input.touchCount == 1) //单点触碰移动摄像机
            {
                if (Input.touches[0].phase == TouchPhase.Began)
                    m_screenPos = Input.touches[0].position;   //记录手指刚触碰的位置
                if (Input.touches[0].phase == TouchPhase.Moved) //手指在屏幕上移动,移动摄像机
                {
                    transform.Translate(new Vector3(Input.touches[0].deltaPosition.x * Time.deltaTime, Input.touches[0].deltaPosition.y * Time.deltaTime, 0));
                }
            }

            else if (Input.touchCount > 1)//多点触碰
            {
                //记录两个手指的位置
                Vector2 nposition1 = new Vector2();
                Vector2 nposition2 = new Vector2();

                //记录手指的每帧移动距离
                Vector2 deltaDis1 = new Vector2();
                Vector2 deltaDis2 = new Vector2();

                for (int i = 0; i < 2; i++)
                {
                    Touch touch = Input.touches[i];
                    if (touch.phase == TouchPhase.Ended)
                        break;
                    if (touch.phase == TouchPhase.Moved) //手指在移动
                    {

                        if (i == 0)
                        {
                            nposition1 = touch.position;
                            deltaDis1 = touch.deltaPosition;
                        }
                        else
                        {
                            nposition2 = touch.position;
                            deltaDis2 = touch.deltaPosition;

                            if (isEnlarge(oposition1, oposition2, nposition1, nposition2)) //判断手势伸缩从而进行摄像机前后移动参数缩放效果
                                isforward = 1;
                            else
                                isforward = -1;
                        }
                        //记录旧的触摸位置
                        oposition1 = nposition1;
                        oposition2 = nposition2;
                    }
                    //移动摄像机
                    Camera.main.transform.Translate(isforward * Vector3.forward * Time.deltaTime * (Mathf.Abs(deltaDis2.x + deltaDis1.x) + Mathf.Abs(deltaDis1.y + deltaDis2.y)));
                }
            }
        }
}

下面是效果截图:

下面是本人的github链接,整个工程都在里面,有兴趣的读者可以自行下载:

https://github.com/jiang-congcong/3D-Scene

猜你喜欢

转载自blog.csdn.net/congcong7267/article/details/82771245