Use logo-less video by default

This commit is contained in:
Dean Herbert 2018-11-05 23:15:30 +09:00
parent c7e5ae0573
commit fb93aea909
2 changed files with 2 additions and 7 deletions

View File

@ -71,9 +71,10 @@ private void load(Storage storage)
//Masking = true, //Masking = true,
Children = new Drawable[] Children = new Drawable[]
{ {
new VideoSprite(storage.GetStream(@"BG Side Logo - OWC.m4v")) new VideoSprite(storage.GetStream("BG Logoless - OWC.m4v"))
{ {
Loop = true, Loop = true,
ShowLastFrameDuringHideCutoff = true,
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
FillMode = FillMode.Fit, FillMode = FillMode.Fit,
}, },

View File

@ -12,7 +12,6 @@
using osu.Framework.Graphics.Shapes; using osu.Framework.Graphics.Shapes;
using osu.Framework.Graphics.Sprites; using osu.Framework.Graphics.Sprites;
using osu.Framework.Graphics.Textures; using osu.Framework.Graphics.Textures;
using osu.Framework.Graphics.Video;
using osu.Framework.IO.Stores; using osu.Framework.IO.Stores;
using osu.Framework.Logging; using osu.Framework.Logging;
using osu.Framework.Platform; using osu.Framework.Platform;
@ -88,11 +87,6 @@ private void load(TextureStore textures, Storage storage)
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
Children = new Drawable[] Children = new Drawable[]
{ {
new VideoSprite(storage.GetStream("BG Logoless - OWC.m4v"))
{
RelativeSizeAxes = Axes.Both,
Loop = true,
},
new Sprite new Sprite
{ {
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,