-
Notifications
You must be signed in to change notification settings - Fork 3
/
metrics.ini
44 lines (36 loc) · 1.14 KB
/
metrics.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# We dont use metrics a lot, But we do need some stuff defined.
[Global]
# This is a Test theme, Fallback to _fallback.
FallbackTheme=_fallback
[Common]
# We want to start at ScreenTitleMenu,
# Which has code in an BGAnimation,
# To send it to the Music Wheel.
InitialScreen="ScreenTitleMenu"
ImageCache=""
# The Music Wheel Screen.
[OFSelectMusic]
# If a person presses back, Go to ScreenTitleMenu.
PrevScreen="ScreenTitleMenu"
# The class we use for the screen,
# We want an empty screen cuz the wheel is all lua.
Class="ScreenWithMenuElements"
# Fallback to said empty screen.
Fallback="ScreenWithMenuElements"
# We dont want to handel the back button, Cuz we do this in lua.
HandleBackButton=false
# We change the next and prev screen of ScreenGamplay,
# Cuz this is a test theme.
[ScreenGameplay]
NextScreen="ScreenTitleMenu"
PrevScreen="ScreenTitleMenu"
# We want to go to ScreenTitleMenu when back is pressed.
[ScreenPlayerOptions]
NextScreen="ScreenSongOptions"
PrevScreen="ScreenTitleMenu"
# Same for ScreenSongOptions.
[ScreenSongOptions]
NextScreen="ScreenGameplay"
PrevScreen="ScreenPlayerOptions"
[Player]
DrawDistanceBeforeTargetsPixels=720