Skip to content

Commit

Permalink
fix(input): bind map controlls and fix player arrow (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
Xenira committed Dec 21, 2023
1 parent dd104bb commit 67d2ebb
Show file tree
Hide file tree
Showing 24 changed files with 833 additions and 703 deletions.
Binary file modified libs/Managed/SteamVR.dll
Binary file not shown.
Binary file modified libs/Managed/SteamVR_Actions.dll
Binary file not shown.
Binary file modified libs/Managed/Unity.XR.Management.dll
Binary file not shown.
Binary file modified libs/Managed/Unity.XR.OpenVR.dll
Binary file not shown.
Binary file modified libs/Managed/Unity.XR.OpenXR.Features.ConformanceAutomation.dll
Binary file not shown.
Binary file modified libs/Managed/Unity.XR.OpenXR.Features.MockRuntime.dll
Binary file not shown.
Binary file modified libs/Managed/Unity.XR.OpenXR.Features.OculusQuestSupport.dll
Binary file not shown.
Binary file modified libs/Managed/Unity.XR.OpenXR.Features.RuntimeDebugger.dll
Binary file not shown.
Binary file modified libs/Managed/Unity.XR.OpenXR.dll
Binary file not shown.
Binary file modified libs/Managed/UnityEngine.XR.LegacyInputHelpers.dll
Binary file not shown.
12 changes: 11 additions & 1 deletion libs/StreamingAssets/SteamVR/actions.json
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,14 @@
"name": "/actions/default/in/Teleport",
"type": "boolean"
},
{
"name": "/actions/default/in/SonarZoomIn",
"type": "boolean"
},
{
"name": "/actions/default/in/SonarZoomOut",
"type": "boolean"
},
{
"name": "/actions/default/out/Haptic",
"type": "vibration"
Expand Down Expand Up @@ -311,7 +319,9 @@
"/actions/default/in/PauseMenu": "Toggle Pause Menu",
"/actions/default/in/ClearHotbar": "Clear Hotbar",
"/actions/default/in/HotbarSwap": "Swap Hotbar Item",
"/actions/default/in/Teleport": "Teleport"
"/actions/default/in/Teleport": "Teleport",
"/actions/default/in/SonarZoomIn": "Map Zoom In",
"/actions/default/in/SonarZoomOut": "Map Zoom Out"
}
]
}
17 changes: 16 additions & 1 deletion libs/StreamingAssets/SteamVR/bindings_knuckles.json
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,21 @@
},
"mode" : "button",
"path" : "/user/hand/right/input/a"
},
{
"inputs" : {
"north" : {
"output" : "/actions/default/in/sonarzoomin"
},
"south" : {
"output" : "/actions/default/in/sonarzoomout"
}
},
"mode" : "dpad",
"parameters" : {
"sub_mode" : "touch"
},
"path" : "/user/hand/left/input/thumbstick"
}
]
},
Expand All @@ -380,7 +395,7 @@
},
"category" : "steamvr_input",
"controller_type" : "knuckles",
"description" : "",
"description" : "Knuckles bindings for Techtonica VR mod",
"interaction_profile" : "",
"name" : "Techtonica VR",
"options" : {},
Expand Down
Loading

0 comments on commit 67d2ebb

Please sign in to comment.