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 @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Fixed Probe volume debug exposure compensation to match the Lighting debug one.
- Fixed lens flare occlusion issues with TAA. (1365098)
- Fixed misleading text and improving the eye scene material samples. (case 1368665)
- Fixed missing DisallowMultipleComponent annotations in HDAdditionalReflectionData and HDAdditionalLightData (case 1365879).

## [13.0.0] - 2021-09-01

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ struct TimelineWorkaround
/// </summary>
[HDRPHelpURLAttribute("Light-Component")]
[AddComponentMenu("")] // Hide in menu
[DisallowMultipleComponent]
[RequireComponent(typeof(Light))]
[ExecuteAlways]
public partial class HDAdditionalLightData : MonoBehaviour, ISerializationCallbackReceiver, IAdditionalData
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ namespace UnityEngine.Rendering.HighDefinition
/// </summary>
[HDRPHelpURLAttribute("Reflection-Probe")]
[AddComponentMenu("")] // Hide in menu
[DisallowMultipleComponent]
[RequireComponent(typeof(ReflectionProbe))]
public sealed partial class HDAdditionalReflectionData : HDProbe, IAdditionalData
{
Expand Down