|
|
|
@ -100,6 +100,7 @@ InputGroup AiL::KEY_MENU; |
|
|
|
|
InputGroup AiL::KEY_SCROLLUP; |
|
|
|
|
InputGroup AiL::KEY_SCROLLDOWN; |
|
|
|
|
InputGroup AiL::KEY_BACK; |
|
|
|
|
InputGroup AiL::KEY_START; |
|
|
|
|
|
|
|
|
|
#ifndef __EMSCRIPTEN__ |
|
|
|
|
::discord::Core*Discord{}; |
|
|
|
@ -2394,6 +2395,11 @@ void AiL::InitializeDefaultKeybinds(){ |
|
|
|
|
KEY_SCROLLDOWN.AddKeybind({KEY,NP2}); |
|
|
|
|
KEY_SCROLLDOWN.AddKeybind({CONTROLLER,static_cast<int>(GPButtons::R2)}); |
|
|
|
|
KEY_SCROLLDOWN.AddKeybind({CONTROLLER,static_cast<int>(GPButtons::R1)}); |
|
|
|
|
|
|
|
|
|
KEY_START.AddKeybind({KEY,RETURN}); |
|
|
|
|
KEY_START.AddKeybind({CONTROLLER,static_cast<int>(GPButtons::START)}); |
|
|
|
|
KEY_SELECT.AddKeybind({KEY,ESCAPE}); |
|
|
|
|
KEY_SELECT.AddKeybind({CONTROLLER,static_cast<int>(GPButtons::SELECT)}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void AiL::SetBossNameDisplay(std::string name,float time){ |
|
|
|
|