mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
appveyor
This commit is contained in:
@ -17,7 +17,7 @@ namespace osu.Game.Overlays.Direct
|
||||
{
|
||||
public class PlayButton : Container
|
||||
{
|
||||
public string TrackURL;
|
||||
public string TrackUrl;
|
||||
|
||||
public Bindable<bool> Playing;
|
||||
|
||||
@ -31,7 +31,7 @@ namespace osu.Game.Overlays.Direct
|
||||
public PlayButton(Bindable<bool> playing)
|
||||
{
|
||||
Playing = playing;
|
||||
Add(icon = new SpriteIcon()
|
||||
Add(icon = new SpriteIcon
|
||||
{
|
||||
Anchor = Anchor.Centre,
|
||||
Origin = Anchor.Centre,
|
||||
@ -75,7 +75,7 @@ namespace osu.Game.Overlays.Direct
|
||||
|
||||
loadTask = Task.Run(() =>
|
||||
{
|
||||
Track = audio.Track.Get(TrackURL);
|
||||
Track = audio.Track.Get(TrackUrl);
|
||||
Track.Looping = true;
|
||||
if (Playing)
|
||||
Track.Start();
|
||||
|
Reference in New Issue
Block a user