Skip to content

Commit

Permalink
Merge pull request #1216 from jaredbranum/fridaynightfunkin-abxy-game…
Browse files Browse the repository at this point in the history
…play

fridaynightfunkin - enable ABXY buttons in gameplay
  • Loading branch information
Cebion authored Jan 20, 2025
2 parents e706827 + 5bfd702 commit b90e2f9
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion ports/fridaynightfunkin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Thanks to:
|--|--|
|A|Action|
|B|Back|
|D-Pad/L-Stick/R-Stick|Moves|
|D-Pad/L-Stick/R-Stick/ABXY|Moves|
|L1/L2|Volume down|
|R1/R2|Volume up|
|Start|Pause|
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
back = r
start = p
a = z
b = x
x = \"
y = \"
a = a
b = b
x = x
y = y
r1 = +
r2 = +
r3 = \"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,23 +42,23 @@ ClientPrefs.data = {
}

ClientPrefs.controls = {
note_left = {"key:a", "key:left"},
note_down = {"key:s", "key:down"},
note_up = {"key:w", "key:up"},
note_right = {"key:d", "key:right"},
note_left = {"key:y", "key:left"},
note_down = {"key:b", "key:down"},
note_up = {"key:x", "key:up"},
note_right = {"key:a", "key:right"},

ui_left = {"key:a", "key:left"},
ui_down = {"key:s", "key:down"},
ui_up = {"key:w", "key:up"},
ui_right = {"key:d", "key:right"},
ui_left = {"key:left"},
ui_down = {"key:down"},
ui_up = {"key:up"},
ui_right = {"key:right"},

volume_down = {"key:-", "key:kp-"},
volume_up = {"key:+", "key:kp+", "key:="},
volume_mute = {"key:0", "key:kp0"},

reset = {"key:r"},
accept = {"key:z", "key:space", "key:return"},
back = {"key:x", "key:backspace", "key:escape"},
accept = {"key:a", "key:space", "key:return"},
back = {"key:b", "key:backspace", "key:escape"},
pause = {"key:p", "key:return", "key:escape"},

fullscreen = {"key:f11"},
Expand Down

0 comments on commit b90e2f9

Please sign in to comment.