返回介绍

Camera.aspect 长宽比

发布于 2019-12-18 15:37:27 字数 1348 浏览 1501 评论 0 收藏 0

JavaScript => var aspect: float;
C# => float aspect;

Description 描述

The aspect ratio (width divided by height).

长宽比(宽度除以高度)。

By default the aspect ratio is automatically calculated from the screen's aspect ratio, even if the camera is not rendering to full area. If you modify the aspect ratio of the camera, the value will stay until you call camera.ResetAspect(); which resets the aspect to the screen's aspect ratio. See Also: camera component, Screen class.

默认的长宽比是从屏幕的长宽比计算得到的,纪实相机没有被渲染到全屏。如果你修改了相机的aspect比,这个值价格保持到你调用camera.ResetAspect(),这将重置长宽比为屏幕的长宽比。见例: camera component, Screen class.

JavaScript:

	if (camera.aspect > 1.0)
		print ("Screen is more wide than tall!");
	else
		print ("Screen is more tall than wide!");

C#:

using UnityEngine;
using System.Collections;
 
public class ExampleClass : MonoBehaviour {
    void Example() {
        if (camera.aspect > 1.0F)
            print("Screen is more wide than tall!");
        else
            print("Screen is more tall than wide!");
    }
}

Camera

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文