mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 16:07:25 +08:00
46 lines
1.2 KiB
C#
46 lines
1.2 KiB
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using System.IO;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Colour;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Framework.Graphics.Video;
|
|
using osu.Game.Graphics;
|
|
|
|
namespace osu.Game.Tournament.Components
|
|
{
|
|
public class TourneyVideo : CompositeDrawable
|
|
{
|
|
private readonly VideoSprite video;
|
|
|
|
public TourneyVideo(Stream stream)
|
|
{
|
|
if (stream == null)
|
|
{
|
|
InternalChild = new Box
|
|
{
|
|
Colour = ColourInfo.GradientVertical(OsuColour.Gray(0.3f), OsuColour.Gray(0.6f)),
|
|
RelativeSizeAxes = Axes.Both,
|
|
};
|
|
}
|
|
else
|
|
InternalChild = video = new VideoSprite(stream)
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
FillMode = FillMode.Fit,
|
|
};
|
|
}
|
|
|
|
public bool Loop
|
|
{
|
|
set
|
|
{
|
|
if (video != null)
|
|
video.Loop = value;
|
|
}
|
|
}
|
|
}
|
|
}
|