2020-03-30 14:21:10 +00: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 04:38:03 +00:00
|
|
|
ColumnWidth,
|
|
|
|
ColumnSpacing,
|
2020-03-30 14:14:30 +00:00
|
|
|
LightImage,
|
|
|
|
LeftLineWidth,
|
2020-03-31 06:23:59 +00:00
|
|
|
RightLineWidth,
|
2020-03-31 03:17:44 +00:00
|
|
|
HitPosition,
|
2020-12-10 14:11:08 +00:00
|
|
|
ScorePosition,
|
2020-04-01 07:05:52 +00:00
|
|
|
LightPosition,
|
2020-03-31 03:26:31 +00:00
|
|
|
HitTargetImage,
|
2020-03-31 06:23:59 +00:00
|
|
|
ShowJudgementLine,
|
2020-03-31 02:23:33 +00:00
|
|
|
KeyImage,
|
2020-03-31 06:29:25 +00:00
|
|
|
KeyImageDown,
|
|
|
|
NoteImage,
|
|
|
|
HoldNoteHeadImage,
|
2020-03-31 07:42:35 +00:00
|
|
|
HoldNoteTailImage,
|
|
|
|
HoldNoteBodyImage,
|
2020-08-26 11:21:41 +00:00
|
|
|
HoldNoteLightImage,
|
|
|
|
HoldNoteLightScale,
|
2020-04-02 05:29:16 +00:00
|
|
|
ExplosionImage,
|
2020-04-02 14:59:53 +00:00
|
|
|
ExplosionScale,
|
2020-04-07 07:50:08 +00:00
|
|
|
ColumnLineColour,
|
|
|
|
JudgementLineColour,
|
2020-04-07 07:53:29 +00:00
|
|
|
ColumnBackgroundColour,
|
2020-04-07 14:37:30 +00:00
|
|
|
ColumnLightColour,
|
2020-04-08 06:36:07 +00:00
|
|
|
MinimumColumnWidth,
|
|
|
|
LeftStageImage,
|
|
|
|
RightStageImage,
|
2020-06-12 13:22:22 +00:00
|
|
|
BottomStageImage,
|
|
|
|
Hit300g,
|
|
|
|
Hit300,
|
|
|
|
Hit200,
|
|
|
|
Hit100,
|
|
|
|
Hit50,
|
|
|
|
Hit0,
|
2020-08-26 06:37:16 +00:00
|
|
|
KeysUnderNotes,
|
2020-03-30 14:21:10 +00:00
|
|
|
}
|
|
|
|
}
|