返回介绍

Texture2D.Compress 压缩

发布于 2019-12-18 15:38:39 字数 2116 浏览 1338 评论 0 收藏 0

JavaScript => public function Compress(highQuality: bool): void;
C# => public void Compress(bool highQuality);

Description 描述

Compress texture into DXT format.

压缩纹理为DXT格式。

Use this to compress textures generated at runtime. Compressed textures use less graphics memory and are faster to render.

使用这个运行时生成压缩纹理,压缩的纹理使用更少的显存并可以更快的渲染。

After compression, texture will be in DXT1 format if the original texture had no alpha channel, and in DXT5 format if it had alpha channel.

压缩后,如果这个纹理没有alpha通道那么就会是DXT1格式,如果有alpha通道则会是DXT5格式

Passing true for highQuality parameter will dither the source texture during compression, which helps to reduce compression artifacts but is slightly slower.

传递 true 到 highQuality 则会在压缩过程中抖动源纹理,这样会提高压缩质量但是也会让压缩速度变慢。

If the graphics card does not support compression or the texture is already in compressed format, then Compress will do nothing.

如果显卡不支持压缩或者纹理已经是压缩格式了,那么这个Compress将不会做任何事。

In the Editor scripts, you probably want to use EditorUtility.CompressTexture, which will compress using slower, but higher quality DXT compression. It can also compress into non-DXT compressed formats.

在编辑器中的脚本中您可能要使用EditorUtility.CompressTexture,压缩的较慢,但却是更高质量的DXT压缩。

You can also load already precompressed data into a texture using LoadRawTextureData function.

你也能使用LoadRawTextureData加载已经预先压缩的纹理数据。

See Also: SetPixels, EditorUtility.CompressTexture, LoadRawTextureData.

Texture2D

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

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

发布评论

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