mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Add ability to adjust (and save) chroma-key area width
This commit is contained in:
@ -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,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user