mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-03 23:53:09 +02:00
43 lines
1.3 KiB
JSON
43 lines
1.3 KiB
JSON
{
|
|
"name": "Standard to Action",
|
|
"channels": [
|
|
{ "from": "Standard.LY", "to": "Actions.TranslateZ" },
|
|
{ "from": "Standard.LX", "to": "Actions.TranslateX" },
|
|
|
|
{ "from": "Standard.RX",
|
|
"when": [ "Application.InHMD", "Application.SnapTurn" ],
|
|
"to": "Actions.StepYaw",
|
|
"filters":
|
|
[
|
|
{ "type": "deadZone", "min": 0.15 },
|
|
"constrainToInteger",
|
|
{ "type": "pulse", "interval": 0.25 },
|
|
{ "type": "scale", "scale": 22.5 }
|
|
]
|
|
},
|
|
|
|
{ "from": "Standard.RX", "to": "Actions.Yaw" },
|
|
{ "from": "Standard.RY",
|
|
"when": "Application.Grounded",
|
|
"to": "Actions.Up",
|
|
"filters":
|
|
[
|
|
{ "type": "deadZone", "min": 0.6 },
|
|
"invert"
|
|
]
|
|
},
|
|
|
|
{ "from": "Standard.RY", "to": "Actions.Up", "filters": "invert"},
|
|
|
|
{ "from": "Standard.Back", "to": "Actions.CycleCamera" },
|
|
{ "from": "Standard.Start", "to": "Actions.ContextMenu" },
|
|
|
|
{ "from": "Standard.LT", "to": "Actions.LeftHandClick" },
|
|
{ "from": "Standard.RT", "to": "Actions.RightHandClick" },
|
|
|
|
{ "from": "Standard.LeftHand", "to": "Actions.LeftHand" },
|
|
{ "from": "Standard.RightHand", "to": "Actions.RightHand" }
|
|
]
|
|
}
|
|
|
|
|