1
0
mirror of synced 2025-02-02 12:27:20 +01:00

it build yay !

This commit is contained in:
Stepland 2020-05-01 00:28:06 +02:00
parent 3de0d50975
commit 40f95dda15
2 changed files with 5 additions and 3 deletions

View File

@ -79,6 +79,8 @@ sources = [
'src/Screens/MusicSelect/SongInfo.cpp',
'src/Screens/Gameplay/Gameplay.hpp',
'src/Screens/Gameplay/Gameplay.cpp',
'src/Screens/Gameplay/GradedNote.cpp',
'src/Screens/Gameplay/GradedNote.hpp',
'src/Screens/Gameplay/PreciseMusic.hpp',
'src/Screens/Gameplay/PreciseMusic.cpp',
'src/Screens/Gameplay/Silence.hpp',

View File

@ -8,7 +8,7 @@ import json
class MarkerAnimation(str, Enum):
APPROACH = "approach"
MISS = "miss"
EARLY = "early"
POOR = "poor"
GOOD = "good"
GREAT = "great"
PERFECT = "perfect"
@ -16,10 +16,10 @@ class MarkerAnimation(str, Enum):
FILENAMES = {
MarkerAnimation.APPROACH : [f'ma{i:02}.png' for i in range(16)],
MarkerAnimation.MISS : [f'ma{i:02}.png' for i in range(16, 24)],
MarkerAnimation.EARLY : [f'h1{i:02}.png' for i in range(16)],
MarkerAnimation.POOR : [f'h1{i:02}.png' for i in range(16)],
MarkerAnimation.GOOD : [f'h2{i:02}.png' for i in range(16)],
MarkerAnimation.GREAT : [f'h3{i:02}.png' for i in range(16)],
MarkerAnimation.PERFECT : [f'h4{i:02}.png' for i in range(16)],
MarkerAnimation.PEEARLYRFECT : [f'h4{i:02}.png' for i in range(16)],
}
METADATA = {