mirror of https://github.com/hykilpikonna/AquaDX
[U] Update documentation
parent
5f1ca64d65
commit
7d0f70f1c0
|
@ -12,3 +12,5 @@ TicketUnlock=true
|
||||||
SkipWarningScreen=true
|
SkipWarningScreen=true
|
||||||
# Single player: Show 1P only, at the center of the screen
|
# Single player: Show 1P only, at the center of the screen
|
||||||
SinglePlayer=true
|
SinglePlayer=true
|
||||||
|
# !!EXPERIMENTAL!! Skip from the card-scanning screen directly to music selection screen
|
||||||
|
SkipToMusicSelection=false
|
|
@ -12,6 +12,7 @@ This mod is heavily WIP. More details will be added as the development progresse
|
||||||
|
|
||||||
* Remove the starting logo and warning cutscene
|
* Remove the starting logo and warning cutscene
|
||||||
* Single Player (1P) mode
|
* Single Player (1P) mode
|
||||||
|
* Skip from card scanning directly to music selection (experimental)
|
||||||
|
|
||||||
**Bug Fixes**
|
**Bug Fixes**
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ namespace AquaMai.UX
|
||||||
public static bool OnUpdate(InformationProcess __instance, ProcessDataContainer ___container)
|
public static bool OnUpdate(InformationProcess __instance, ProcessDataContainer ___container)
|
||||||
{
|
{
|
||||||
GameManager.SetMaxTrack();
|
GameManager.SetMaxTrack();
|
||||||
___container.processManager.AddProcess(new MusicSelectProcess(___container), 50);
|
___container.processManager.AddProcess(new MusicSelectProcess(___container));
|
||||||
___container.processManager.ReleaseProcess(__instance);
|
___container.processManager.ReleaseProcess(__instance);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue