Skip to content

Commit

Permalink
Fix incorrect tile height property
Browse files Browse the repository at this point in the history
  • Loading branch information
mminer committed May 23, 2021
1 parent 9b3fc96 commit 6f400a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Editor/BigCameraInputSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ public override int OutputWidth
[Tooltip("Number of vertical tiles.")]
[SerializeField] int rows = 2;

public int TileHeight => OutputHeight / Rows;
public int TileWidth => OutputWidth / Columns;
public int TileHeight => OutputWidth / Columns;

protected override bool ValidityCheck(List<string> errors)
{
Expand Down

0 comments on commit 6f400a2

Please sign in to comment.