mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 06:36:31 +09:00
Determine SampleInfo defaults in DrawableHitObject
This commit is contained in:
@ -5,14 +5,16 @@ namespace osu.Game.Beatmaps.ControlPoints
|
||||
{
|
||||
public class SoundControlPoint : ControlPoint
|
||||
{
|
||||
public const string DEFAULT_BANK = "normal";
|
||||
|
||||
/// <summary>
|
||||
/// The default sample bank at this control point.
|
||||
/// </summary>
|
||||
public string SampleBank;
|
||||
public string SampleBank = DEFAULT_BANK;
|
||||
|
||||
/// <summary>
|
||||
/// The default sample volume at this control point.
|
||||
/// </summary>
|
||||
public int SampleVolume;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user