|
|
|
|
|
|
public SerializedProperty supportSSR; |
|
|
|
public SerializedProperty supportSSAO; |
|
|
|
public SerializedProperty supportDBuffer; |
|
|
|
public SerializedProperty supportMSAA; |
|
|
|
public SerializedProperty msaaSampleCount; |
|
|
|
public SerializedProperty supportSubsurfaceScattering; |
|
|
|
|
|
|
|
public SerializedGlobalLightLoopSettings lightLoopSettings; |
|
|
|
|
|
|
supportSSR = root.Find((RenderPipelineSettings s) => s.supportSSR); |
|
|
|
supportSSAO = root.Find((RenderPipelineSettings s) => s.supportSSAO); |
|
|
|
supportDBuffer = root.Find((RenderPipelineSettings s) => s.supportDBuffer); |
|
|
|
supportMSAA = root.Find((RenderPipelineSettings s) => s.supportMSAA); |
|
|
|
msaaSampleCount = root.Find((RenderPipelineSettings s) => s.msaaSampleCount); |
|
|
|
supportSubsurfaceScattering = root.Find((RenderPipelineSettings s) => s.supportSubsurfaceScattering); |
|
|
|
|
|
|
|
lightLoopSettings = new SerializedGlobalLightLoopSettings(root.Find((RenderPipelineSettings s) => s.lightLoopSettings)); |
|
|
|