|
|
|
|
|
|
public SerializedProperty supportMSAA; |
|
|
|
public SerializedProperty MSAASampleCount; |
|
|
|
public SerializedProperty supportSubsurfaceScattering; |
|
|
|
public SerializedProperty supportForwardOnly; |
|
|
|
public SerializedProperty supportOnlyForward; |
|
|
|
public SerializedProperty supportMotionVectors; |
|
|
|
public SerializedProperty supportStereo; |
|
|
|
public SerializedProperty enableUltraQualitySSS; |
|
|
|
|
|
|
supportMSAA = root.Find((RenderPipelineSettings s) => s.supportMSAA); |
|
|
|
MSAASampleCount = root.Find((RenderPipelineSettings s) => s.msaaSampleCount); |
|
|
|
supportSubsurfaceScattering = root.Find((RenderPipelineSettings s) => s.supportSubsurfaceScattering); |
|
|
|
supportForwardOnly = root.Find((RenderPipelineSettings s) => s.supportForwardOnly); |
|
|
|
supportOnlyForward = root.Find((RenderPipelineSettings s) => s.supportOnlyForward); |
|
|
|
supportMotionVectors = root.Find((RenderPipelineSettings s) => s.supportMotionVectors); |
|
|
|
supportStereo = root.Find((RenderPipelineSettings s) => s.supportStereo); |
|
|
|
enableUltraQualitySSS = root.Find((RenderPipelineSettings s) => s.enableUltraQualitySSS); |
|
|
|