zoukankan      html  css  js  c++  java
  • 图标跟着摄像机(Camera)orthographicSize的值改变大小

    默认摄像机(Camera)orthographicSize默认大小为51

       

           #region //滚轮滑动,大地图放大缩小
            if (Input.GetAxis("Mouse ScrollWheel") < 0)
            {
                if (screenView_1Main.myEquipSearch.issearch == false)
                {
                    if (m_bigMapCameraComponent.orthographicSize <= 46)
                    {
                        m_bigMapCameraComponent.orthographicSize += 5;  //根据这个变化值进行判断
                        m_bigMapSphere.transform.localScale = new Vector3(m_bigMapSphere.transform.localScale.x + 0.4f, m_bigMapSphere.transform.localScale.y + 0.4f, m_bigMapSphere.transform.localScale.z + 0.4f);
    
                        //图标放大       //根据orthographicSize 变化值进行判断
                        if (m_bigMapCameraComponent.orthographicSize <= 41)
                        {
                            _bigmapPoint.transform.localScale = new Vector3(m_bigMapCameraComponent.orthographicSize / 2, m_bigMapCameraComponent.orthographicSize / 2, m_bigMapCameraComponent.orthographicSize / 2);
                        }
                        else if (m_bigMapCameraComponent.orthographicSize == 46)
                        {
                            _bigmapPoint.transform.localScale = new Vector3(21, 21, 21);
                        }
                        else if (m_bigMapCameraComponent.orthographicSize == 51)
                        {
                            _bigmapPoint.transform.localScale = new Vector3(22, 22, 22);
                        }
    
                        //m_targetScreenPos = m_bigMapCameraComponent.WorldToScreenPoint(screenView_1Main.my_mouseController.target.transform.position);
                        m_targetWorldPos = m_bigMapCameraComponent.ScreenToWorldPoint(m_targetScreenPos);
                        m_bigMapCamera.transform.position -= (m_targetWorldPos - screenView_1Main.my_mouseController.target.transform.position);
    
                        m_bigMapCamera.transform.localPosition = Vector3.Lerp(m_bigMapCamera.transform.localPosition, Vector3.zero, m_bigMapCameraComponent.orthographicSize / 51.0f);
                        if (Selectthebox != null)
                        {
                            Selectthebox.transform.GetComponent<RectTransform>().localScale = new Vector3(25, 25, 1);
                            //Selectthebox.transform.GetComponent<RectTransform>().localScale = new Vector3(100f+m_bigMapCameraComponent.orthographicSize, 100f+m_bigMapCameraComponent.orthographicSize, 1);
                        }
    
                       
                        //bigmapPoint.transform.localScale
                    }
                }
    
            }
  • 相关阅读:
    Oracle的序列、视图、索引和表空间
    MySQL存储过程
    MySQL触发器
    MySQL索引和视图
    完整性约束
    Mybatis的核心对象及运行流程
    Mybatis中配置连接池
    IDEA中创建Maven工程整合Mybatis
    Idea中创建JavaWeb工程
    实现整数集合的并、交、差运算
  • 原文地址:https://www.cnblogs.com/Study088/p/9243866.html
Copyright © 2011-2022 走看看