-
Notifications
You must be signed in to change notification settings - Fork 144
/
Copy pathCameraDepthBake.cs
53 lines (42 loc) · 2.48 KB
/
CameraDepthBake.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
using UnityEngine;
using UnityEngine.Rendering.HighDefinition;
using UnityEngine.Rendering;
using System.Reflection;
class CameraDepthBake : CustomPass
{
public Camera bakingCamera = null;
public RenderTexture depthTexture = null;
public RenderTexture normalTexture = null;
public RenderTexture tangentTexture = null;
public bool render = true;
protected override bool executeInSceneView => false;
protected override void Execute(CustomPassContext ctx)
{
if (!render || ctx.hdCamera.camera == bakingCamera || bakingCamera == null || ctx.hdCamera.camera.cameraType == CameraType.SceneView)
return;
if (depthTexture == null && normalTexture == null && tangentTexture == null)
return;
// We need to be careful about the aspect ratio of render textures when doing the culling, otherwise it could result in objects poping:
if (depthTexture != null)
bakingCamera.aspect = Mathf.Max(bakingCamera.aspect, depthTexture.width / (float)depthTexture.height);
if (normalTexture != null)
bakingCamera.aspect = Mathf.Max(bakingCamera.aspect, normalTexture.width / (float)normalTexture.height);
if (tangentTexture != null)
bakingCamera.aspect = Mathf.Max(bakingCamera.aspect, tangentTexture.width / (float)tangentTexture.height);
bakingCamera.TryGetCullingParameters(out var cullingParams);
cullingParams.cullingOptions = CullingOptions.None;
// Assign the custom culling result to the context
// so it'll be used for the following operations
ctx.cullingResults = ctx.renderContext.Cull(ref cullingParams);
var overrideDepthTest = new RenderStateBlock(RenderStateMask.Depth) { depthState = new DepthState(true, CompareFunction.LessEqual) };
// Depth
if (depthTexture != null)
CustomPassUtils.RenderDepthFromCamera(ctx, bakingCamera, depthTexture, ClearFlag.Depth, bakingCamera.cullingMask, overrideRenderState: overrideDepthTest);
// Normal
if (normalTexture != null)
CustomPassUtils.RenderNormalFromCamera(ctx, bakingCamera, normalTexture, ClearFlag.All, bakingCamera.cullingMask, overrideRenderState: overrideDepthTest);
// Tangent
if (tangentTexture != null)
CustomPassUtils.RenderTangentFromCamera(ctx, bakingCamera, tangentTexture, ClearFlag.All, bakingCamera.cullingMask, overrideRenderState: overrideDepthTest);
}
}