zoukankan      html  css  js  c++  java
  • 摄像机跟着鼠标左右移动而移动,上下移动而前进后退

    private float cameraMoveSpeed = 1.5f;
    void Update()
    {
    moveThisCamera();
    }
    void moveThisCamera()
    {
    if (Input.mousePosition.x <= 10)
    {
    float xNew = this.transform.position.x;
    xNew -= cameraMoveSpeed * Time.deltaTime;
    this.transform.position = new Vector3(xNew, this.transform.position.y, this.transform.position.z);
    }
    if (Input.mousePosition.x >= (Screen.width - 10))
    {
    float xNew = this.transform.position.x;
    xNew += cameraMoveSpeed * Time.deltaTime;
    this.transform.position = new Vector3(xNew, this.transform.position.y, this.transform.position.z);
    }

    if (Input.mousePosition.y <= 10)
    {
    float zNew = this.transform.position.z;
    zNew -= cameraMoveSpeed * Time.deltaTime;
    this.transform.position = new Vector3(this.transform.position.x, this.transform.position.y, zNew);
    }
    if (Input.mousePosition.y >= (Screen.height - 10))
    {
    float zNew = this.transform.position.z;
    zNew += cameraMoveSpeed * Time.deltaTime;
    this.transform.position = new Vector3(this.transform.position.x, this.transform.position.y, zNew);
    }
    }

  • 相关阅读:
    expect
    grep
    Python函数
    Python的set
    Python字典
    Python循环
    Python条件判断
    Python列表
    Python字符串
    Python组织代码块的形式
  • 原文地址:https://www.cnblogs.com/Study088/p/7298627.html
Copyright © 2011-2022 走看看