Add Chroma keying to the background of the showcase video.

This commit is contained in:
Shivam 2020-04-23 21:09:12 +02:00
parent 085b6ae25f
commit 28dcfe867c
1 changed files with 14 additions and 1 deletions

View File

@ -4,11 +4,14 @@
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Game.Tournament.Components;
using osu.Framework.Graphics.Shapes;
using osuTK.Graphics;
namespace osu.Game.Tournament.Screens.Showcase
{
public class ShowcaseScreen : BeatmapInfoScreen
public class ShowcaseScreen : BeatmapInfoScreen, IProvideVideo
{
private Box chroma;
[BackgroundDependencyLoader]
private void load()
{
@ -18,6 +21,16 @@ private void load()
{
Loop = true,
RelativeSizeAxes = Axes.Both,
},
chroma = new Box
{
// chroma key area for stable gameplay
Name = "chroma",
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Height = 695,
Width = 1366,
Colour = new Color4(0, 255, 0, 255),
}
});
}