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 @@ -718,6 +718,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Fixed UI drawing of the quaternion (1251235)
- Fix an issue with the quality mode and perf mode on RTR and RTGI and getting rid of unwanted nans (1256923).
- Fixed unitialized ray tracing resources when using non-default HDRP asset (case 1259467).
- Fixed for area light not updating baked light result when modifying with gizmo.

### Changed
- Improve MIP selection for decals on Transparents
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2832,6 +2832,8 @@ void UpdateShapeSize()
// Force to clamp the shape if we changed the type of the light
shapeWidth = m_ShapeWidth;
shapeHeight = m_ShapeHeight;

legacyLight.areaSize = new Vector2(shapeWidth, shapeHeight);
}

/// <summary>
Expand Down