Version: 2020.3
public bool Resize (int width, int height, TextureFormat format, bool hasMipMap);

描述

调整纹理大小。

Changes size of texture to width by height, format to textureFormat and optionally creates mipmaps. After resizing, texture pixels will be undefined. This function is very similar to the texture constructor, except it works on existing texture object.

调用 Apply 可实际将更改的像素上传到显卡。

Texture.isReadable must be true.


public bool Resize (int width, int height);

描述

调整纹理大小。

将纹理大小更改为 width x /height/。 调整大小后,纹理像素将是未定义的。该函数与纹理构造函数极其相似, 但它适用于现有纹理对象。

调用 Apply 可实际将更改的像素上传到显卡。

纹理必须在导入设置中设置了 Is Readable 标志。