您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
39 行
1.4 KiB
39 行
1.4 KiB
using UnityEngine.Rendering;
|
|
|
|
namespace UnityEngine.Experimental.Rendering.LightweightPipeline
|
|
{
|
|
public class DrawSkyboxPass : ScriptableRenderPass
|
|
{
|
|
|
|
private RenderTargetHandle colorAttachmentHandle { get; set; }
|
|
private RenderTargetHandle depthAttachmentHandle { get; set; }
|
|
|
|
public void Setup(RenderTargetHandle colorHandle, RenderTargetHandle depthHandle)
|
|
{
|
|
this.colorAttachmentHandle = colorHandle;
|
|
this.depthAttachmentHandle = depthHandle;
|
|
}
|
|
|
|
public override void Execute(ScriptableRenderer renderer, ref ScriptableRenderContext context,
|
|
ref CullResults cullResults,
|
|
ref RenderingData renderingData)
|
|
{
|
|
|
|
CommandBuffer cmd = CommandBufferPool.Get("Draw Skybox (Set RT's)");
|
|
if(renderingData.cameraData.isStereoEnabled && XRGraphicsConfig.eyeTextureDesc.dimension == TextureDimension.Tex2DArray)
|
|
{
|
|
cmd.SetRenderTarget(colorAttachmentHandle.Identifier(), depthAttachmentHandle.Identifier(), 0, CubemapFace.Unknown, -1);
|
|
}
|
|
else
|
|
{
|
|
cmd.SetRenderTarget(colorAttachmentHandle.Identifier(), depthAttachmentHandle.Identifier());
|
|
}
|
|
|
|
context.ExecuteCommandBuffer(cmd);
|
|
CommandBufferPool.Release(cmd);
|
|
|
|
context.DrawSkybox(renderingData.cameraData.camera);
|
|
}
|
|
|
|
}
|
|
}
|