2020-03-30 22:21:10 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
|
|
namespace osu.Game.Skinning
|
|
|
|
{
|
|
|
|
public class LegacyManiaSkinConfigurationLookup
|
|
|
|
{
|
|
|
|
public readonly int Keys;
|
|
|
|
public readonly LegacyManiaSkinConfigurationLookups Lookup;
|
|
|
|
public readonly int? TargetColumn;
|
|
|
|
|
|
|
|
public LegacyManiaSkinConfigurationLookup(int keys, LegacyManiaSkinConfigurationLookups lookup, int? targetColumn = null)
|
|
|
|
{
|
|
|
|
Keys = keys;
|
|
|
|
Lookup = lookup;
|
|
|
|
TargetColumn = targetColumn;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public enum LegacyManiaSkinConfigurationLookups
|
|
|
|
{
|
2020-04-01 12:38:03 +08:00
|
|
|
ColumnWidth,
|
|
|
|
ColumnSpacing,
|
2020-03-30 22:14:30 +08:00
|
|
|
LightImage,
|
|
|
|
LeftLineWidth,
|
2020-03-31 14:23:59 +08:00
|
|
|
RightLineWidth,
|
2020-03-31 11:17:44 +08:00
|
|
|
HitPosition,
|
2020-04-01 15:05:52 +08:00
|
|
|
LightPosition,
|
2020-03-31 11:26:31 +08:00
|
|
|
HitTargetImage,
|
2020-03-31 14:23:59 +08:00
|
|
|
ShowJudgementLine,
|
2020-03-31 10:23:33 +08:00
|
|
|
KeyImage,
|
2020-03-31 14:29:25 +08:00
|
|
|
KeyImageDown,
|
|
|
|
NoteImage,
|
|
|
|
HoldNoteHeadImage,
|
2020-03-31 15:42:35 +08:00
|
|
|
HoldNoteTailImage,
|
|
|
|
HoldNoteBodyImage,
|
2020-04-02 13:29:16 +08:00
|
|
|
ExplosionImage,
|
2020-04-02 22:59:53 +08:00
|
|
|
ExplosionScale,
|
2020-04-07 15:50:08 +08:00
|
|
|
ColumnLineColour,
|
|
|
|
JudgementLineColour,
|
2020-04-07 15:53:29 +08:00
|
|
|
ColumnBackgroundColour,
|
2020-04-07 22:37:30 +08:00
|
|
|
ColumnLightColour,
|
2020-04-08 14:36:07 +08:00
|
|
|
MinimumColumnWidth,
|
|
|
|
LeftStageImage,
|
|
|
|
RightStageImage,
|
2020-04-08 15:20:26 +08:00
|
|
|
BottomStageImage
|
2020-03-30 22:21:10 +08:00
|
|
|
}
|
|
|
|
}
|