mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
Start background video playback based on provided offset
This commit is contained in:
@ -52,6 +52,7 @@ namespace osu.Game.Beatmaps
|
||||
public int PreviewTime { get; set; }
|
||||
public string AudioFile { get; set; }
|
||||
public string BackgroundFile { get; set; }
|
||||
public int VideoOffset { get; set; }
|
||||
public string VideoFile { get; set; }
|
||||
|
||||
public override string ToString() => $"{Artist} - {Title} ({Author})";
|
||||
@ -83,6 +84,7 @@ namespace osu.Game.Beatmaps
|
||||
&& PreviewTime == other.PreviewTime
|
||||
&& AudioFile == other.AudioFile
|
||||
&& BackgroundFile == other.BackgroundFile
|
||||
&& VideoOffset == other.VideoOffset
|
||||
&& VideoFile == other.VideoFile;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user