Skip to content

Commit

Permalink
Fix slide sounds not using std HitObject volume
Browse files Browse the repository at this point in the history
  • Loading branch information
LumpBloom7 committed Dec 9, 2024
1 parent 6f8e6ad commit a60cf4c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ private void load()
}
});
}

protected override void LoadSamples()
{
// The slide parent object doesn't need a sample
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,11 @@ protected override void OnApply()
StarProgress = 0;
}

protected override void LoadSamples()
{
// The slidebody object doesn't need a sample
}

protected override void OnFree()
{
base.OnFree();
Expand Down
1 change: 1 addition & 0 deletions osu.Game.Rulesets.Sentakki/Objects/Slide.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ private void createSlideBodies()
{
Lane = slideInfo.SlidePath.EndLane + Lane,
StartTime = StartTime,
Samples = Samples
});

SlideBodies.Add(body);
Expand Down

0 comments on commit a60cf4c

Please sign in to comment.