textures | 要打包到图集中的纹理的数组。 |
padding | 打包的纹理之间的像素填充。 |
maximumAtlasSize | 生成的纹理的最大大小。 |
makeNoLongerReadable | 是否应将纹理标记为不再可读? |
Rect[] 包含每个输入纹理在图集中的 UV 坐标的矩形数组,如果打包失败,则为 null。
将多个纹理打包到一个纹理图集中。
该函数将使用由提供的纹理制作的图集替换当前纹理。
打包后,任何纹理的大小、格式和多级渐进纹理都可能发生更改。
生成的纹理图集的大小将满足所有输入纹理的需求,
但每个维度最多只能达到 /maximumAtlasSize/。如果无法将输入纹理全部装入所需大小的纹理图集,
则将输入纹理缩小后装入。
If you have compressed all input textures, and the following conditions are met, Unity also compresses the output atlas:
If input textures are compressed and have mipmaps, the following conditions will cause the atlas to created as an uncompressed texture:
If the input textures are compressed but some have mipmaps and others have none, atlas format falls back to being uncompressed.
If the compressed input textures have mipmaps and padding > 0, atlas format falls back to being uncompressed.
If any of the input images have mipmaps and the padding value is greater than zero, the atlas texture is uncompressed. This is because of alignment restrictions on the compressed data.
If you have not compressed one or more input textures, the atlas remains in the uncompressed format RGBA32.
If the texture atlas remains compressed and has a padding value is greater than zero, the padding value is rounded up to the next multiple of four. This happens because of alignment restrictions on compressed data.
This is a shortlist of compressed formats. You can find the full list in TextureFormat:
ETC
ETC2
EAC
DXT
ASTC
PVRTC
However, the atlas packing code doesn't support every compression format. Of the available formats, the atlas packing code only supports the following:
If all other conditions are met, and input textures are using one of these formats, the texture atlas will be compressed.
ARGB4444
ETC
ETC2
DXT1
DXT5
BC7
ASTC 4x4
All input textures must have the same compression format or be a mixture of compatible compression formats, otherwise atlas format falls back to uncompressed.
You can mix these types in an atlas, where they stay compressed:
DXT1 and TextureFormat::pref:DXT5 result in a DXT5 atlas.
ETC2_RGB, ETC_RGB4, and ETC2_RGBA8 result in a ETC2_RGBA8 atlas.
However, if the input textures mix formats, such as BC7 with ASTC 4x4 or DXT5, this causes the atlas packing code to fall back to RGBA32.
If none of the input textures have mipmaps, the atlas also has no mipmaps.
如果 makeNoLongerReadable
为 makeNoLongerReadable
,则纹理将被标记为不再可读取,
并且在上传到 GPU 后内存将被释放。
默认情况下,makeNoLongerReadable
被设置为 /false/。
using UnityEngine;
public class Example : MonoBehaviour { // Source textures. Texture2D[] atlasTextures;
// Rectangles for individual atlas textures. Rect[] rects;
void Start() { // Pack the individual textures into the smallest possible space, // while leaving a two pixel gap between their edges. Texture2D atlas = new Texture2D(8192, 8192); rects = atlas.PackTextures(atlasTextures, 2, 8192); } }
Did you find this page useful? Please give it a rating:
Thanks for rating this page!
What kind of problem would you like to report?
Thanks for letting us know! This page has been marked for review based on your feedback.
If you have time, you can provide more information to help us fix the problem faster.
Provide more information
You've told us this page needs code samples. If you'd like to help us further, you could provide a code sample, or tell us about what kind of code sample you'd like to see:
You've told us there are code samples on this page which don't work. If you know how to fix it, or have something better we could use instead, please let us know:
You've told us there is information missing from this page. Please tell us more about what's missing:
You've told us there is incorrect information on this page. If you know what we should change to make it correct, please tell us:
You've told us this page has unclear or confusing information. Please tell us more about what you found unclear or confusing, or let us know how we could make it clearer:
You've told us there is a spelling or grammar error on this page. Please tell us what's wrong:
You've told us this page has a problem. Please tell us more about what's wrong:
Thank you for helping to make the Unity documentation better!
Your feedback has been submitted as a ticket for our documentation team to review.
We are not able to reply to every ticket submitted.