陀螺仪
将设备的物理移动映射到一组指定轴的传感器控件。
属性
type
- "gyroscope"
axis
-
对象或数组。 一个描述此触摸板控件的映射的单一轴或轴数组。
备注
警告
陀螺仪控件可能无法在支持触摸布局的所有设备上使用。
像 touchpad
一样,陀螺仪通常在第一/第三人称游戏中使用,用于控制玩家的观察相机。 使用陀螺仪进行优化可以使玩家的控件具有类似鼠标的精度。
示例
Map the movement of the device to the right joystick, using a specified sensitivity.
{
"type": "gyroscope",
"axis": {
"input": "axisXY",
"output": "rightJoystick",
"sensitivity": 0.3
},
}
Map the movement of the device to relative mouse movement, using a specified sensitivity.
{
"type": "gyroscope",
"axis": {
"input": "axisXY",
"output": "relativeMouse",
"sensitivity": 6.3
},
}
要求
布局版本:1.0+