nameID | このテクスチャのシェーダープロパティー名 |
width | ピクセルの幅。 "Camera Pixel Width" は -1 。 |
height | ピクセルの高さ。"Camera Pixel Height" は -1 。 |
slices | Number of slices in texture array. |
depthBuffer | デプスバッファのビット (0 、16 、 24) |
filter | テクスチャフィルタリングモード (デフォルトは Point ) |
format | レンダーテクスチャの形式 (デフォルトは ARGB32) |
readWrite | カラー空間変換モード |
antiAliasing | アンチエイリアス (デフォルトはアンチエイリアスなし) |
enableRandomWrite | Should random-write access into the texture be enabled (default is false). |
Add a "get a temporary render texture array" command.
This creates a temporary render texture array with given parameters, and sets it up as a global shader property with nameID. Use Shader.PropertyToID to create the integer name.
Release the temporary render texture array using ReleaseTemporaryRT, passing the same nameID. Any temporary textures that were not explicitly released will be removed after camera is done rendering, or after Graphics.ExecuteCommandBuffer is done.
After getting a temporary render texture array, you can set it as active (SetRenderTarget) or blit to/from it (Blit). You do not explicitly need to preserve active render targets during command buffer execution (current render targets are saved & restored afterwards).
See Also: ReleaseTemporaryRT, SetRenderTarget, Blit.