BasicCollisionService is a physics simulator that is suitable for the HUD and overlays. It lacks a few complex/expensive features that might be desired in a playable level of a game.

Hierarchy (view full)

Constructors

Properties

Methods

Constructors

Properties

world: b2World = ...

The physics world in which all actors interact

Methods

  • Query to find the actors at a screen coordinate

    Parameters

    • coords: {
          x: number;
          y: number;
      }
      • x: number

        The X coordinate (in meters) to look up

      • y: number

        The Y coordinate (in meters) to look up

    Returns Actor[]