Add ability to adjust (and save) chroma-key area width

This commit is contained in:
Dean Herbert
2020-03-23 11:47:24 +09:00
parent 4fbf94f963
commit 27ae2d29aa
3 changed files with 20 additions and 4 deletions

View File

@ -24,7 +24,13 @@ namespace osu.Game.Tournament.Models
// only used for serialisation
public List<TournamentProgression> Progressions = new List<TournamentProgression>();
[JsonIgnore]
[JsonIgnore] // updated manually in TournamentGameBase
public Bindable<TournamentMatch> CurrentMatch = new Bindable<TournamentMatch>();
public Bindable<int> ChromaKeyWidth = new BindableInt(1024)
{
MinValue = 640,
MaxValue = 1366,
};
}
}