返回介绍

QualitySettings.masterTextureLimit 主纹理限制

发布于 2019-12-18 15:38:21 字数 1125 浏览 1184 评论 0 收藏 0

JavaScript => public static var masterTextureLimit: int;
C# => public static int masterTextureLimit;

Description 描述

A texture size limit applied to all textures.

一个纹理大小限制,应用于所有纹理。

Setting this to one uses the first mipmap of each texture (so all textures are half size), setting this to two uses the second mipmap of each texture (so all textures are quarter size), etc.. This can be used to decrease video memory requirements on low-end computers. The default value is zero.

此项设置到1个使用每个纹理的第一个mipmap(因此所有的纹理是一半大小),此项设置到2个使用每个纹理的第二个mipmap(因此所有纹理是四分之一大小),等等…。这个可用于减少对低端电脑的视频内存的要求。默认的值是0。

JavaScript:

	// Use half-size textures.
 
	QualitySettings.masterTextureLimit = 1;

C#:

using UnityEngine;
using System.Collections;
 
public class ExampleClass : MonoBehaviour {
    void Example() {
        QualitySettings.masterTextureLimit = 1;
    }
}

qualitysettings

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

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

发布评论

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