Version: 2021.2
言語: 日本語
public bool Reinitialize (int width, int height);
public bool Reinitialize (int width, int height, Experimental.Rendering.GraphicsFormat format, bool hasMipMap);
public bool Reinitialize (int width, int height, TextureFormat format, bool hasMipMap);

パラメーター

width New width of the Texture.
height New height of the Texture.
format New format of the Texture.
hasMipMap Indicates if the Texture should reserve memory for a full mip map chain.

戻り値

bool Returns true if the reinitialization was a success.

説明

Reinitializes the Texture to width by height, format to format and optionally creates mip maps. After reinitializing, Texture pixels will be undefined. This function is very similar to the Texture constructor, except it works on existing Texture object.

Apply を呼び出して、変更したピクセルを実際にグラフィックスカードにアップロードします。

The Texture has to have read/write enabled flag set in the texture import settings.