Unity:2D游戏设置相机orthographicSize

目录

[根据设备分辨率动态设置相机 orthographicSize](#根据设备分辨率动态设置相机 orthographicSize)


根据设备分辨率动态设置相机 orthographicSize

  • 2d游戏里面相机的Orthan.size确定的是高度,宽度是按照屏幕的宽高比计算出来的
  • cameraWidthSize = camera.Orthographic.size*(Screen.Width/Screen.height)
  • 我在游戏里设置的 开发分辨率是1080*1920
  • 所以我在原先Y=1920情况下 Camera设置的orthographicSize=10,可以恰好把图片横向全部展示
  • 如下

但是导出apk安装到手机上的时候 我的手机分辨率是1080*2440

  • 这个时候用unity用10来计算
  • 10*(Screen.Width/Screen.height)
  • 就会把宽度变小了
  • 但是到了手机里就变成了这样

所以需要按照开发的尺寸(原先的宽)度来重新计算size ,挂在摄像机上

cs 复制代码
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class CameraAdaper : MonoBehaviour
{
    // Start is called before the first frame update
    void Start()
    {
        SetCamera(GetComponent<Camera>());
    }

    float width = 1080;//开发分辨率x
    float height = 1920;//开发分辨率y

    //需要适配宽度
    public void SetCamera(Camera camera)
    {
        var realWidthSize = (camera.orthographicSize * (width / height));
        Debug.Log($"width_{Screen.width}-height_{Screen.height}");
        float val  = realWidthSize / ((float)Screen.width / (float)Screen.height);
        Debug.Log($"cameraSzie{val}");
        camera.orthographicSize = val;
    }

}

完成

相关推荐
龚子亦2 小时前
Unity学习之UGUI进阶
学习·unity·游戏引擎·ugui
浅陌sss9 小时前
Unity中 Xlua使用整理(一)
unity·游戏引擎
Luo_LA10 小时前
【LeetCode Hot100 贪心算法】 买卖股票的最佳时机、跳跃游戏、划分字母区间
leetcode·游戏·贪心算法
W Y11 小时前
【Unity-和WPF结合的优势】
unity·游戏引擎·wpf
洛洛英英11 小时前
电脑提示directx错误导致玩不了游戏怎么办?dx出错的解决方法
游戏·电脑
野区捕龙为宠11 小时前
Photon最新版本PUN 2.29 PREE,在无网的局域网下,无法连接自己搭建的本地服务器
unity·unity3d
_WndProc12 小时前
【C++/控制台】2048小游戏
开发语言·c++·游戏·游戏程序
hvinsion12 小时前
HTML 迷宫游戏
前端·游戏·html
星晖云游者14 小时前
【AI游戏】使用强化学习玩 Flappy Bird:从零实现 Q-Learning 算法(附完整资源)
人工智能·游戏·pygame
omegayy15 小时前
.NET framework、Core和Standard都是什么?
unity·c#·.net