Skip to content

Commit

Permalink
Fix URP Dynamic Resolution
Browse files Browse the repository at this point in the history
A line was accidentally checked in which always disables dynamic resolution on the camera during URP rendering. This PR removes that line to fix UUM-18852.
  • Loading branch information
pbbastian authored and Evergreen committed Feb 3, 2023
1 parent def6175 commit 956a88a
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,6 @@ protected override void Render(ScriptableRenderContext renderContext, Camera[] c
#endif
{
var camera = cameras[i];
camera.allowDynamicResolution = false;
if (IsGameCamera(camera))
{
RenderCameraStack(renderContext, camera);
Expand Down

0 comments on commit 956a88a

Please sign in to comment.