Skip to content

Commit

Permalink
Add tooltips to Recorder UI
Browse files Browse the repository at this point in the history
  • Loading branch information
mminer committed May 20, 2021
1 parent 26f279d commit b823267
Showing 1 changed file with 7 additions and 15 deletions.
22 changes: 7 additions & 15 deletions Editor/BigCameraInputSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,13 @@ class BigCameraInputSettings : ImageInputSettings
{
protected override Type InputType => typeof(BigCameraInput);

public string CameraTag
{
get => cameraTag;
set => cameraTag = value;
}
public string CameraTag => cameraTag;

[SerializeField] string cameraTag = "MainCamera";

public int ColumnCount
{
get => columnCount;
set => columnCount = value;
}
public int ColumnCount => columnCount;

[Tooltip("Number of horizontal tiles.")]
[SerializeField] int columnCount = 2;

public override int OutputHeight
Expand All @@ -32,6 +25,7 @@ public override int OutputHeight
set => outputHeight = value;
}

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

public override int OutputWidth
Expand All @@ -40,14 +34,12 @@ public override int OutputWidth
set => outputWidth = value;
}

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

public int RowCount
{
get => rowCount;
set => rowCount = value;
}
public int RowCount => rowCount;

[Tooltip("Number of vertical tiles.")]
[SerializeField] int rowCount = 2;

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

0 comments on commit b823267

Please sign in to comment.