Skip to content
1 change: 1 addition & 0 deletions com.unity.render-pipelines.high-definition/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Fixed after post process custom pass scale issue when dynamic resolution is enabled (case 1299194).
- Fixed an issue with light intensity prefab override application not visible in the inspector (case 1299563).
- Fixed Undo/Redo instability of light temperature.
- Fixed label style in pbr sky editor.

### Changed
- Change the source value for the ray tracing frame index iterator from m_FrameCount to the camera frame count (case 1301356).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public override void OnEnable()

public override void OnInspectorGUI()
{
EditorGUILayout.LabelField("Model");
EditorGUILayout.LabelField("Model", EditorStyles.miniLabel);

using (new EditorGUILayout.HorizontalScope())
{
Expand All @@ -111,7 +111,7 @@ public override void OnInspectorGUI()
PhysicallyBasedSkyModel type = (PhysicallyBasedSkyModel)m_Type.value.intValue;

EditorGUILayout.Space();
EditorGUILayout.LabelField("Planet");
EditorGUILayout.LabelField("Planet", EditorStyles.miniLabel);

if (type == PhysicallyBasedSkyModel.EarthSimple)
PropertyField(m_SeaLevel);
Expand Down Expand Up @@ -146,7 +146,7 @@ public override void OnInspectorGUI()
if (type != PhysicallyBasedSkyModel.EarthSimple)
{
EditorGUILayout.Space();
EditorGUILayout.LabelField("Space");
EditorGUILayout.LabelField("Space", EditorStyles.miniLabel);
PropertyField(m_SpaceRotation);
PropertyField(m_SpaceEmissionTexture);
PropertyField(m_SpaceEmissionMultiplier);
Expand All @@ -155,7 +155,7 @@ public override void OnInspectorGUI()
if (type == PhysicallyBasedSkyModel.Custom)
{
EditorGUILayout.Space();
EditorGUILayout.LabelField("Air");
EditorGUILayout.LabelField("Air", EditorStyles.miniLabel);
PropertyField(m_AirMaximumAltitude);
PropertyField(m_AirDensityR);
PropertyField(m_AirDensityG);
Expand All @@ -164,7 +164,7 @@ public override void OnInspectorGUI()
}

EditorGUILayout.Space();
EditorGUILayout.LabelField("Aerosols");
EditorGUILayout.LabelField("Aerosols", EditorStyles.miniLabel);
PropertyField(m_AerosolDensity);
PropertyField(m_AerosolTint);
if (type != PhysicallyBasedSkyModel.EarthSimple)
Expand All @@ -174,7 +174,7 @@ public override void OnInspectorGUI()
}

EditorGUILayout.Space();
EditorGUILayout.LabelField("Artistic Overrides");
EditorGUILayout.LabelField("Artistic Overrides", EditorStyles.miniLabel);
PropertyField(m_ColorSaturation);
PropertyField(m_AlphaSaturation);
PropertyField(m_AlphaMultiplier);
Expand All @@ -183,7 +183,7 @@ public override void OnInspectorGUI()
PropertyField(m_ZenithTint);

EditorGUILayout.Space();
EditorGUILayout.LabelField("Miscellaneous");
EditorGUILayout.LabelField("Miscellaneous", EditorStyles.miniLabel);
PropertyField(m_NumberOfBounces);

base.CommonSkySettingsGUI();
Expand Down