We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 451f8b2 commit da1c2ecCopy full SHA for da1c2ec
osu.Framework/Audio/Sample/SampleChannel.cs
@@ -44,8 +44,6 @@ protected override void UpdateState()
44
45
public virtual bool Looping { get; set; }
46
47
- public override bool IsAlive => base.IsAlive && Playing;
48
-
49
public virtual ChannelAmplitudes CurrentAmplitudes { get; } = ChannelAmplitudes.Empty;
50
51
#region Mixing
osu.Framework/Audio/Sample/SampleChannelVirtual.cs
@@ -13,6 +13,8 @@ internal class SampleChannelVirtual : SampleChannel
13
14
public override bool Playing => playing;
15
16
+ public override bool IsAlive => base.IsAlive && Playing;
17
+
18
public SampleChannelVirtual(string name)
19
: base(name)
20
{
0 commit comments