Skip to content

Commit

Permalink
Make default output size a power of two
Browse files Browse the repository at this point in the history
  • Loading branch information
mminer committed May 23, 2021
1 parent 35d330f commit 419b7db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Editor/BigCameraInputSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public override int OutputHeight
}

[Tooltip("Vertical resolution of final image once stitched together.")]
[SerializeField] int outputHeight = 8096;
[SerializeField] int outputHeight = 8192;

public override int OutputWidth
{
Expand All @@ -37,7 +37,7 @@ public override int OutputWidth
}

[Tooltip("Horizontal resolution of final image once stitched together.")]
[SerializeField] int outputWidth = 8096;
[SerializeField] int outputWidth = 8192;

public int Rows => rows;

Expand Down

0 comments on commit 419b7db

Please sign in to comment.