|
|
|
|
|
|
|
|
|
|
public static GUIContent requireSoftParticles = new GUIContent("Soft Particles", "If enabled the pipeline will enable SOFT_PARTICLES keyword."); |
|
|
|
|
|
|
|
public static GUIContent usesScreenSpaceShadows = new GUIContent("Screen Space Shadows", "TODO"); |
|
|
|
public static GUIContent requireScreenSpaceShadows = new GUIContent("Screen Space Shadows", "TODO"); |
|
|
|
|
|
|
|
public static GUIContent shadowType = new GUIContent("Type", |
|
|
|
"Global shadow settings. Options are NO_SHADOW, HARD_SHADOWS and SOFT_SHADOWS."); |
|
|
|
|
|
|
private SerializedProperty m_MaxPixelLights; |
|
|
|
private SerializedProperty m_SupportsVertexLightProp; |
|
|
|
private SerializedProperty m_RequireDepthTextureProp; |
|
|
|
private SerializedProperty m_UsesScreenSpaceShadowsProp; |
|
|
|
private SerializedProperty m_RequireScreenSpaceShadowsProp; |
|
|
|
private SerializedProperty m_RequireSoftParticlesProp; |
|
|
|
private SerializedProperty m_ShadowTypeProp; |
|
|
|
private SerializedProperty m_ShadowNearPlaneOffsetProp; |
|
|
|
|
|
|
m_SupportsVertexLightProp = serializedObject.FindProperty("m_SupportsVertexLight"); |
|
|
|
m_RequireDepthTextureProp = serializedObject.FindProperty("m_RequireDepthTexture"); |
|
|
|
m_RequireSoftParticlesProp = serializedObject.FindProperty("m_RequireSoftParticles"); |
|
|
|
m_UsesScreenSpaceShadowsProp = serializedObject.FindProperty("m_UsesScreenSpaceShadows"); |
|
|
|
m_RequireScreenSpaceShadowsProp = serializedObject.FindProperty("m_RequireScreenSpaceShadows"); |
|
|
|
m_ShadowTypeProp = serializedObject.FindProperty("m_ShadowType"); |
|
|
|
m_ShadowNearPlaneOffsetProp = serializedObject.FindProperty("m_ShadowNearPlaneOffset"); |
|
|
|
m_ShadowDistanceProp = serializedObject.FindProperty("m_ShadowDistance"); |
|
|
|
|
|
|
m_ShowSoftParticles.value = m_RequireSoftParticlesProp.boolValue; |
|
|
|
|
|
|
|
m_ShowScreenSpaceShadows.valueChanged.AddListener(Repaint); |
|
|
|
m_ShowScreenSpaceShadows.value = m_UsesScreenSpaceShadowsProp.boolValue; |
|
|
|
m_ShowScreenSpaceShadows.value = m_RequireScreenSpaceShadowsProp.boolValue; |
|
|
|
} |
|
|
|
|
|
|
|
void OnDisable() |
|
|
|
|
|
|
EditorGUILayout.PropertyField(m_ShadowCascade2SplitProp, Styles.shadowCascadeSplit); |
|
|
|
} |
|
|
|
|
|
|
|
DrawAnimatedProperty(m_UsesScreenSpaceShadowsProp, Styles.usesScreenSpaceShadows, m_ShowScreenSpaceShadows); |
|
|
|
DrawAnimatedProperty(m_RequireScreenSpaceShadowsProp, Styles.requireScreenSpaceShadows, m_ShowScreenSpaceShadows); |
|
|
|
|
|
|
|
EditorGUI.indentLevel--; |
|
|
|
|
|
|
|