The WebXRInput class is used to describe input devices for WebXR.

WebXRInput 类用来描述 WebXR 的输入设备。

层级 (查看层级一览)

属性

_lastXRPose: any

The last position of the input ray.

输入射线的上一个位置。

gamepadAxis: AxiGamepad

Information about the gamepad axes.

游戏手柄轴的信息。

gamepadButton: ButtonGamepad[]

Information about the gamepad buttons.

游戏手柄按钮的信息。

handness: string

The handness of the device, "left" or "right".

设备名称,"left" 或 "right"。

lastXRPose: any

The last XR pose data.

上一次的 XR 姿态数据。

position: Vector3

The position of the hand or controller.

手或控制器的位置。

ray: Ray

The input ray representing the direction of the hand or controller.

表示手或控制器方向的输入射线。

rotation: Quaternion

The rotation of the hand or controller.

手或控制器的旋转。

EVENT_FRAMEUPDATA_WEBXRINPUT: string = "frameXRInputUpdate"
HANDNESS_LEFT: string = "left"
HANDNESS_RIGHT: string = "right"

方法

  • 参数

    • index: number

      The index of the axis.

    • type: string

      The type of event.

    • caller: any

      The execution scope of the event listener function.

    • listener: Function

      The event listener function.

    返回 void

    Adds an event listener for a gamepad axis.

    为游戏手柄轴添加事件侦听器。

  • 参数

    • index: number

      The index of the button.

    • type: string

      The type of event.

    • caller: any

      The execution scope of the event listener function.

    • listener: Function

      The event listener function.

    返回 void

    Adds an event listener for a gamepad button.

    为游戏手柄按钮添加事件侦听器

  • 参数

    • type: string

      The type of event.

    • 可选data: any

      (Optional) Data to pass to the callback. If multiple parameters p1, p2, p3, ... need to be passed, use an array structure such as [p1, p2, p3, ...]. If a single parameter p needs to be passed and p is an array, use a structure such as [p]. For other single parameters p, you can directly pass parameter p. If data is Event.EMPTY, it means passing an Event object to the callback function. Note that it is not passing Event.TEMP, but an independent Event object.

    返回 boolean

    True if there are listeners for this event type, false otherwise.

    Dispatch an event.

    派发事件。

  • 参数

    • type: string

      The type of event.

    返回 boolean

    True if a listener of the specified type is registered, false otherwise.

    Check if the EventDispatcher object has any listeners registered for a specific type of event.

    检查 EventDispatcher 对象是否为特定事件类型注册了任何侦听器。

  • 参数

    • index: number

      The index of the axis.

    • type: string

      The type of event.

    • caller: any

      The execution scope of the event listener function.

    • listener: Function

      The event listener function.

    返回 void

    Removes an event listener for a gamepad axis.

    移除游戏手柄轴的事件侦听器。

  • 参数

    • index: number

      The index of the button.

    • type: string

      The type of event.

    • caller: any

      The execution scope of the event listener function.

    • listener: Function

      The event listener function.

    返回 void

    Removes an event listener for a gamepad button.

    移除游戏手柄按钮的事件侦听器

  • 参数

    • type: string

      The type of event.

    • listener: Function

      The listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知。

  • 参数

    • type: string

      The type of event.

    • caller: any

      The execution scope of the event listener function.

    • listener: Function

      The listener function.

    • 可选args: any[]

      (Optional) The callback parameters of the event listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知。

  • 参数

    • type: string

      The type of event.

    • listener: Function

      The listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications. This event listener responds once and is automatically removed after the first call.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知,此侦听事件响应一次后自动移除。

  • 参数

    • type: string

      The type of event.

    • caller: any

      The execution scope of the event listener function.

    • listener: Function

      The listener function.

    • 可选args: any[]

      (Optional) The callback parameters of the event listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications. This event listener responds once and is automatically removed after the first call.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知,此侦听事件响应一次后自动移除。