Forgot this in last commit.
parent
2af93427fe
commit
8b9e0e25ca
|
@ -59,7 +59,7 @@ struct Image_Data {
|
||||||
};
|
};
|
||||||
|
|
||||||
struct Controller_Settings {
|
struct Controller_Settings {
|
||||||
std::map<std::string, std::map<std::string, std::pair<std::set<std::string>, std::string>>> action_sets = {{"ship_controls", {{"analog_controls", {{"LJOY"}, "joystick_move"}}}}, {"menu_controls", {{"menu_up", {{"DLJOYUP", "DUP"}, ""}}, {"menu_down", {{"DLJOYDOWN", "DDOWN"}, ""}}}}};
|
std::map<std::string, std::map<std::string, std::pair<std::set<std::string>, std::string>>> action_sets;
|
||||||
std::map<std::string, std::string> action_set_layer_parents;
|
std::map<std::string, std::string> action_set_layer_parents;
|
||||||
std::map<std::string, std::map<std::string, std::pair<std::set<std::string>, std::string>>> action_set_layers;
|
std::map<std::string, std::map<std::string, std::pair<std::set<std::string>, std::string>>> action_set_layers;
|
||||||
};
|
};
|
||||||
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
Move=LJOY=joystick_move
|
||||||
|
Camera=RJOY=joystick_move
|
||||||
|
Dash=RTRIGGER=trigger
|
||||||
|
LockOn=LTRIGGER=trigger
|
||||||
|
pause_menu=START
|
||||||
|
LightAttack=X
|
||||||
|
HeavyAttack=Y
|
||||||
|
Jump=A
|
||||||
|
check=B
|
||||||
|
ActivateSkillAndMagic=RBUMPER
|
||||||
|
IdeaRelease=LBUMPER
|
||||||
|
AllMap=BACK
|
||||||
|
ResetCamera=RSTICK
|
||||||
|
ChangeCharacterUp=DUP
|
||||||
|
ChangeCharacterDown=DDOWN
|
||||||
|
ChangeCharacterRight=DRIGHT
|
||||||
|
ChangeCharacterLeft=DLEFT
|
|
@ -0,0 +1,16 @@
|
||||||
|
MenuDash=RTRIGGER=trigger
|
||||||
|
MenuLockOn=LTRIGGER=trigger
|
||||||
|
MenuUp=DUP,DLJOYUP
|
||||||
|
MenuDown=DDOWN,DLJOYDOWN
|
||||||
|
MenuRight=DRIGHT,DLJOYRIGHT
|
||||||
|
MenuLeft=DLEFT,DLJOYLEFT
|
||||||
|
SELECT=A
|
||||||
|
Cancel=B
|
||||||
|
MenuX=X
|
||||||
|
MenuY=Y
|
||||||
|
MenuRTrigger=RBUMPER
|
||||||
|
MenuLTrigger=LBUMPER
|
||||||
|
Sort=BACK
|
||||||
|
PauseMenu=START
|
||||||
|
ScrollUp=DRJOYUP
|
||||||
|
ScrollDown=DRJOYDOWN
|
Loading…
Reference in New Issue