UnityAPI手册-2019.4官网版
文集大纲加载中……
本文档使用 MrDoc 发布
-
+
首页
Camera.orthographicSize
# [Camera](https://docs.unity3d.com/cn/2019.4/ScriptReference/Camera.html).orthographicSize public float **orthographicSize** ; ## 描述 处于正交模式时,摄像机大小的一半。 orthographicSize 属性定义 [orthographic](https://docs.unity3d.com/cn/2019.4/ScriptReference/Camera-orthographic.html) 摄像机的视体。要编辑该大小,请先使用脚本或在 Inspector 中将摄像机设置为 orthographic。 orthographicSize 为垂直视体大小的一半。视体的水平大小取决于宽高比。 如果是非正交摄像机,将忽略 Orthographic 大小(请参阅 [orthographic](https://docs.unity3d.com/cn/2019.4/ScriptReference/Camera-orthographic.html))。 另请参阅:[camera component](https://docs.unity3d.com/cn/2019.4/Manual/class-Camera.html)。 ``` using UnityEngine; public class Example : MonoBehaviour { //Assign this Camera in the Inspector public Camera m_OrthographicCamera; //These are the positions and dimensions of the Camera view in the Game view float m_ViewPositionX, m_ViewPositionY, m_ViewWidth, m_ViewHeight; void Start() { //This sets the Camera view rectangle to be in the bottom corner of the screen m_ViewPositionX = 0; m_ViewPositionY = 0; //This sets the Camera view rectangle to be smaller so you can compare the orthographic view of this Camera with the perspective view of the Main Camera m_ViewWidth = 0.4f; m_ViewHeight = 0.4f; //This enables the Camera (the one that is orthographic) m_OrthographicCamera.enabled = true; //If the Camera exists in the inspector, enable orthographic mode and change the size if (m_OrthographicCamera) { //This enables the orthographic mode m_OrthographicCamera.orthographic = true; //Set the size of the viewing volume you'd like the orthographic Camera to pick up (5) m_OrthographicCamera.orthographicSize = 5.0f; //Set the orthographic Camera Viewport size and position m_OrthographicCamera.rect = new Rect(m_ViewPositionX, m_ViewPositionY, m_ViewWidth, m_ViewHeight); } } } ```
da
2022年5月24日 10:22
转发文档
收藏文档
上一篇
下一篇
手机扫码
复制链接
手机扫一扫转发分享
复制链接
关于 MrDoc
觅思文档MrDoc
是
州的先生
开发并开源的在线文档系统,其适合作为个人和小型团队的云笔记、文档和知识库管理工具。
如果觅思文档给你或你的团队带来了帮助,欢迎对作者进行一些打赏捐助,这将有力支持作者持续投入精力更新和维护觅思文档,感谢你的捐助!
>>>捐助鸣谢列表
微信
支付宝
QQ
PayPal
Markdown文件
分享
链接
类型
密码
更新密码