facebook twitter hatena line email

「Unity/UIImage/Texture」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==Textureコピー== <pre> var tmpTexture = Copy((Texture2D)texture); tmpTexture.Apply(); </pre> コピーロジック <pre> public Texture2D Copy(Texture2D source) {...」)
(相違点なし)

2023年3月8日 (水) 04:38時点における版

Textureコピー

var tmpTexture = Copy((Texture2D)texture);
tmpTexture.Apply();

コピーロジック

public Texture2D Copy(Texture2D source)
{
    var texture = new Texture2D(source.width, source.height, TextureFormat.RGBA32, false);
    var renderTexture = new RenderTexture(texture.width, texture.height, 32);
    Graphics.Blit(source, renderTexture);
    RenderTexture.active = renderTexture;
    texture.ReadPixels(new Rect(0, 0, renderTexture.width, renderTexture.height), 0, 0);
    RenderTexture.active = null;
    RenderTexture.DestroyImmediate(renderTexture);
    return texture;
}

参考:https://qiita.com/UnityFoo/items/25b8304036e0a8ca7798