Skip to content

Commit

Permalink
3do direction buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
n-at committed Sep 6, 2023
1 parent a91195d commit a4985c2
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions templates/includes/platform_settings/controls/3do.twig
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
{% include control_template with input="keyboard" btn_id="r" btn_title="R" btn_value=controls.Keyboard.R %}
{% include control_template with input="keyboard" btn_id="select" btn_title="X" btn_value=controls.Keyboard.Select %}
{% include control_template with input="keyboard" btn_id="start" btn_title="P" btn_value=controls.Keyboard.Start %}
{% include control_template with input="keyboard" btn_id="up" btn_title="Up" btn_value=controls.Keyboard.Up %}
{% include control_template with input="keyboard" btn_id="down" btn_title="Down" btn_value=controls.Keyboard.Down %}
{% include control_template with input="keyboard" btn_id="left" btn_title="Left" btn_value=controls.Keyboard.Left %}
{% include control_template with input="keyboard" btn_id="right" btn_title="Right" btn_value=controls.Keyboard.Right %}
{% include "common_keyboard_controls.twig" %}
{% endblock %}

Expand All @@ -26,5 +30,9 @@
{% include control_template with input="gamepad" btn_id="r" btn_title="R" btn_value=controls.Gamepad.R %}
{% include control_template with input="gamepad" btn_id="select" btn_title="X" btn_value=controls.Gamepad.Select %}
{% include control_template with input="gamepad" btn_id="start" btn_title="P" btn_value=controls.Gamepad.Start %}
{% include control_template with input="gamepad" btn_id="up" btn_title="Up" btn_value=controls.Gamepad.Up %}
{% include control_template with input="gamepad" btn_id="down" btn_title="Down" btn_value=controls.Gamepad.Down %}
{% include control_template with input="gamepad" btn_id="left" btn_title="Left" btn_value=controls.Gamepad.Left %}
{% include control_template with input="gamepad" btn_id="right" btn_title="Right" btn_value=controls.Gamepad.Right %}
{% include "common_gamepad_controls.twig" %}
{% endblock %}

0 comments on commit a4985c2

Please sign in to comment.