限制角色在相机范围内

来源:互联网 发布:高级sql生成选项 编辑:程序博客网 时间:2024/06/04 00:21
private float screenEdgeHorizontal = 80f; //the distance between the player and the horizontal edge of the screen  80private float screenEdgeVertical = 18f; //the distance between the player and the vertical edge of the screen
//keep the player within camera viewvoid KeepPlayerInCameraView(){Vector2 playerPosScreen = Camera.main.WorldToScreenPoint(transform.position);        if (playerPosScreen.x + screenEdgeHorizontal > Screen.width && (playerPosScreen.y - screenEdgeVertical < 0)){//右下transform.position = Camera.main.ScreenToWorldPoint(new Vector3(Screen.width-screenEdgeHorizontal, screenEdgeVertical, transform.position.z - Camera.main.transform.position.z));        } else if(playerPosScreen.x + screenEdgeHorizontal > Screen.width){//右transform.position = Camera.main.ScreenToWorldPoint(new Vector3(Screen.width-screenEdgeHorizontal, playerPosScreen.y, transform.position.z - Camera.main.transform.position.z));} else if(playerPosScreen.x - screenEdgeHorizontal < 0f && (playerPosScreen.y - screenEdgeVertical < 0)){//左下transform.position = Camera.main.ScreenToWorldPoint( new Vector3(screenEdgeHorizontal, screenEdgeVertical, transform.position.z - Camera.main.transform.position.z));} else if(playerPosScreen.x - screenEdgeHorizontal < 0f){//左transform.position = Camera.main.ScreenToWorldPoint( new Vector3(screenEdgeHorizontal, playerPosScreen.y, transform.position.z - Camera.main.transform.position.z));} else if(playerPosScreen.y - screenEdgeVertical < 0){//下transform.position = Camera.main.ScreenToWorldPoint(new Vector3(playerPosScreen.x, screenEdgeVertical, transform.position.z - Camera.main.transform.position.z));}}

原创粉丝点击