forked from Clones/Controlify
compound joysticks, button guide in screens, improve API
This commit is contained in:
@ -20,8 +20,10 @@
|
||||
"controlify.gui.toggle_sprint.tooltip": "How the state of the sprint button behaves.",
|
||||
"controlify.gui.auto_jump": "Auto Jump",
|
||||
"controlify.gui.auto_jump.tooltip": "If the player should automatically jump when you reach a block.",
|
||||
"controlify.gui.show_guide": "Show Button Guide",
|
||||
"controlify.gui.show_guide.tooltip": "Show a HUD in-game displaying actions you can do with controller buttons.",
|
||||
"controlify.gui.show_ingame_guide": "Show Ingame Button Guide",
|
||||
"controlify.gui.show_ingame_guide.tooltip": "Show a HUD in-game displaying actions you can do with controller buttons.",
|
||||
"controlify.gui.show_screen_guide": "Show Screen Button Guide",
|
||||
"controlify.gui.show_screen_guide.tooltip": "Show various helpers in GUIs to assist in using controller input.",
|
||||
"controlify.gui.vmouse_sensitivity": "Virtual Mouse Sensitivity",
|
||||
"controlify.gui.vmouse_sensitivity.tooltip": "How fast the virtual mouse moves.",
|
||||
"controlify.gui.chat_screen_offset": "On-screen keyboard height",
|
||||
@ -55,6 +57,8 @@
|
||||
|
||||
"controlify.gui.button": "Controller Settings...",
|
||||
|
||||
"controlify.gui.controller_unavailable": "Controller unavailable and cannot be edited.",
|
||||
|
||||
"controlify.toast.vmouse_enabled.title": "Virtual Mouse Enabled",
|
||||
"controlify.toast.vmouse_enabled.description": "Controlify virtual mouse is now enabled for this screen.",
|
||||
"controlify.toast.vmouse_disabled.title": "Virtual Mouse Disabled",
|
||||
|
@ -0,0 +1,176 @@
|
||||
{
|
||||
"axes": [
|
||||
{
|
||||
"ids": [0, 1],
|
||||
"identifier": "ps4_left_stick",
|
||||
"deadzone": true,
|
||||
"rest": 0.0,
|
||||
"axis_names": [
|
||||
["right", "left"],
|
||||
["down", "up"]
|
||||
]
|
||||
},
|
||||
{
|
||||
"ids": [2, 5],
|
||||
"identifier": "ps4_right_stick",
|
||||
"deadzone": true,
|
||||
"axis_names": [
|
||||
["right", "left"],
|
||||
["down", "up"]
|
||||
],
|
||||
"rest": 0.0
|
||||
},
|
||||
{
|
||||
"ids": [3],
|
||||
"identifier": "ps4_left_trigger",
|
||||
"rest": 0.0,
|
||||
"deadzone": false,
|
||||
"range": [0.0, 1.0],
|
||||
"axis_names": [
|
||||
["down", "up"]
|
||||
]
|
||||
},
|
||||
{
|
||||
"ids": [4],
|
||||
"identifier": "ps4_right_trigger",
|
||||
"rest": 0.0,
|
||||
"deadzone": false,
|
||||
"range": [0.0, 1.0],
|
||||
"axis_names": [
|
||||
["down", "up"]
|
||||
]
|
||||
},
|
||||
{
|
||||
"ids": [6, 7],
|
||||
"identifier": "xbox_left_stick",
|
||||
"deadzone": true,
|
||||
"rest": 0.0,
|
||||
"axis_names": [
|
||||
["right", "left"],
|
||||
["down", "up"]
|
||||
]
|
||||
},
|
||||
{
|
||||
"ids": [8, 9],
|
||||
"identifier": "xbox_right_stick",
|
||||
"deadzone": true,
|
||||
"axis_names": [
|
||||
["right", "left"],
|
||||
["down", "up"]
|
||||
],
|
||||
"rest": 0.0
|
||||
},
|
||||
{
|
||||
"ids": [10],
|
||||
"identifier": "xbox_left_trigger",
|
||||
"deadzone": false,
|
||||
"rest": 0.0,
|
||||
"range": [0.0, 1.0],
|
||||
"axis_names": [
|
||||
["down", "up"]
|
||||
]
|
||||
},
|
||||
{
|
||||
"ids": [11],
|
||||
"identifier": "xbox_right_trigger",
|
||||
"deadzone": false,
|
||||
"rest": 0.0,
|
||||
"range": [0.0, 1.0],
|
||||
"axis_names": [
|
||||
["down", "up"]
|
||||
]
|
||||
}
|
||||
],
|
||||
"buttons": [
|
||||
{
|
||||
"button": 0,
|
||||
"name": "a"
|
||||
},
|
||||
{
|
||||
"button": 1,
|
||||
"name": "b"
|
||||
},
|
||||
{
|
||||
"button": 2,
|
||||
"name": "x"
|
||||
},
|
||||
{
|
||||
"button": 3,
|
||||
"name": "y"
|
||||
},
|
||||
{
|
||||
"button": 4,
|
||||
"name": "left_bumper"
|
||||
},
|
||||
{
|
||||
"button": 5,
|
||||
"name": "right_bumper"
|
||||
},
|
||||
{
|
||||
"button": 6,
|
||||
"name": "back"
|
||||
},
|
||||
{
|
||||
"button": 7,
|
||||
"name": "start"
|
||||
},
|
||||
{
|
||||
"button": 8,
|
||||
"name": "left_stick"
|
||||
},
|
||||
{
|
||||
"button": 9,
|
||||
"name": "right_stick"
|
||||
},
|
||||
{
|
||||
"button": 10,
|
||||
"name": "a1"
|
||||
},
|
||||
{
|
||||
"button": 11,
|
||||
"name": "b1"
|
||||
},
|
||||
{
|
||||
"button": 12,
|
||||
"name": "x1"
|
||||
},
|
||||
{
|
||||
"button": 13,
|
||||
"name": "y1"
|
||||
},
|
||||
{
|
||||
"button": 14,
|
||||
"name": "left_bumper1"
|
||||
},
|
||||
{
|
||||
"button": 15,
|
||||
"name": "right_bumper1"
|
||||
},
|
||||
{
|
||||
"button": 16,
|
||||
"name": "back1"
|
||||
},
|
||||
{
|
||||
"button": 17,
|
||||
"name": "start1"
|
||||
},
|
||||
{
|
||||
"button": 18,
|
||||
"name": "left_stick1"
|
||||
},
|
||||
{
|
||||
"button": 19,
|
||||
"name": "right_stick1"
|
||||
}
|
||||
],
|
||||
"hats": [
|
||||
{
|
||||
"hat": 0,
|
||||
"name": "dpad_xbox"
|
||||
},
|
||||
{
|
||||
"hat": 1,
|
||||
"name": "dpad_ps4"
|
||||
}
|
||||
]
|
||||
}
|
@ -1,92 +0,0 @@
|
||||
{
|
||||
"axes": [
|
||||
{
|
||||
"ids": [0, 1],
|
||||
"identifier": "left_stick",
|
||||
"deadzone": true,
|
||||
"rest": 0.0,
|
||||
"axis_names": [
|
||||
["right", "left"],
|
||||
["down", "up"]
|
||||
]
|
||||
},
|
||||
{
|
||||
"ids": [2, 3],
|
||||
"identifier": "right_stick",
|
||||
"deadzone": true,
|
||||
"axis_names": [
|
||||
["right", "left"],
|
||||
["down", "up"]
|
||||
],
|
||||
"rest": 0.0
|
||||
},
|
||||
{
|
||||
"ids": [4],
|
||||
"identifier": "left_trigger",
|
||||
"deadzone": false,
|
||||
"rest": 0.0,
|
||||
"range": [0.0, 1.0],
|
||||
"axis_names": [
|
||||
["down", "up"]
|
||||
]
|
||||
},
|
||||
{
|
||||
"ids": [5],
|
||||
"identifier": "right_trigger",
|
||||
"deadzone": false,
|
||||
"rest": 0.0,
|
||||
"range": [0.0, 1.0],
|
||||
"axis_names": [
|
||||
["down", "up"]
|
||||
]
|
||||
}
|
||||
],
|
||||
"buttons": [
|
||||
{
|
||||
"button": 0,
|
||||
"name": "a"
|
||||
},
|
||||
{
|
||||
"button": 1,
|
||||
"name": "b"
|
||||
},
|
||||
{
|
||||
"button": 2,
|
||||
"name": "x"
|
||||
},
|
||||
{
|
||||
"button": 3,
|
||||
"name": "y"
|
||||
},
|
||||
{
|
||||
"button": 4,
|
||||
"name": "left_bumper"
|
||||
},
|
||||
{
|
||||
"button": 5,
|
||||
"name": "right_bumper"
|
||||
},
|
||||
{
|
||||
"button": 6,
|
||||
"name": "back"
|
||||
},
|
||||
{
|
||||
"button": 7,
|
||||
"name": "start"
|
||||
},
|
||||
{
|
||||
"button": 8,
|
||||
"name": "left_stick"
|
||||
},
|
||||
{
|
||||
"button": 9,
|
||||
"name": "right_stick"
|
||||
}
|
||||
],
|
||||
"hats": [
|
||||
{
|
||||
"hat": 0,
|
||||
"name": "dpad"
|
||||
}
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user