Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -198,6 +198,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Updated Wizard to better handle RenderPipelineAsset in Quality Settings
- Added Global settings check in Wizard
- Added localization on Wizard window
- Added an info box for micro shadow editor (case 1322830).

## [11.0.0] - 2020-10-21

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
using UnityEngine.Rendering.HighDefinition;

namespace UnityEditor.Rendering.HighDefinition
{
[VolumeComponentEditor(typeof(MicroShadowing))]
sealed class MicroShadowingEditor : VolumeComponentEditor
{
static public readonly string k_DirectionnalWarning = "Micro Shadows only works with directional Lights";

public override void OnInspectorGUI()
{
base.OnInspectorGUI();
EditorGUILayout.HelpBox(k_DirectionnalWarning, MessageType.Info);
}
}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.