属性

clickTestThreshold: number = 10

The threshold for considering a mouse press and release as a click. If the distance between the press and release positions exceeds this value, it is not considered a click.

鼠标按下和弹起位置之间的距离阀值,用以判断是否视为一次点击。如果超过这个距离,则不视为点击。

keyEventsEnabled: boolean = true

Whether to enable keyboard events. Default is true.

是否开启键盘事件。默认为 true。

lastMouseTime: number = 0

The time of the last mouse event.

上一次鼠标事件的时间。

lastTouchId: number = 0

The ID of the last touch event.

上一次触摸事件的ID。

mouseEventsEnabled: boolean = true

Whether to enable mouse/touch events. Default is true.

是否开启鼠标/触摸事件。默认为 true。

mouseX: number = 0

The X coordinate of the mouse on the canvas.

canvas 上鼠标的 X 坐标。

mouseY: number = 0

The Y coordinate of the mouse on the canvas.

canvas 上鼠标的 Y 坐标。

multiTouchEnabled: boolean = true

Whether to enable multi-touch support.

是否开启多点触控支持。

onMouseDownCapture: Delegate = ...

Dispatched before the process of a MOUSE_DOWN event, which can be used to preprocess the MOUSE_DOWN event.

在处理MOUSE_DOWN事件之前调度,可用于提前处理按下事件。

访问器

方法

  • 参数

    • x: number

      The x-coordinate value.

    • y: number

      The y-coordinate value.

    返回 Node

    The node under the point or the stage if no node is found.

    Obtain nodes under location points

    获取位置点下的节点

  • 参数

    • sp: Sprite

      The Sprite relative to which the coordinates are calculated.

    • x: number

      The x-coordinate relative to the Sprite.

    • y: number

      The y-coordinate relative to the Sprite.

    返回 Sprite

    The sprite under the point or null if not found.

    Get the sprite under the specified coordinates relative to a Sprite. The x/y values are in the local coordinates of the Sprite.

    获取在相对Sprite指定坐标下的sprite。x/y值是Sprite的本地坐标。

  • 参数

    • ev: MouseEvent | WheelEvent

      Mouse events

    • type: number

      Event types

    返回 void

    Handling mouse events

    处理鼠标事件

  • 参数

    • ev: TouchEvent

      Touch screen events.

    • type: number

      Event types.

    返回 void

    Handling touch screen events.

    处理触屏事件

  • 参数

    • sp: Sprite

      Relative Sprite.

    • x: number

      The x-coordinate relative to the Sprite.

    • y: number

      The y-coordinate relative to the Sprite.

    • 可选editing: boolean

      Whether the test is performed in editing mode.

    返回 boolean

    True if the point is within the Sprite's bounds, false otherwise.

    Hit test

    点击测试

  • 参数

    • 可选touchId: number

      The ID of the touch event to cancel.

    返回 void

    Cancel the click event for a touch point.

    取消指定触摸点的点击事件。

  • 参数

    • 可选touchId: number

      The ID of the touch point. If not provided, the position of the first touch point will be returned.

    返回 Readonly<Point>

    The position of the touch point.

    Get the touch position.

    获取触摸位置。