A rigid body whose underlying shape is a circle

Hierarchy

  • RigidBodyBase
    • CircleBody

Constructors

  • Construct a CircleBody

    Parameters

    • circleCfg: {
          cx: number;
          cy: number;
          radius: number;
      }

      The basic shape configuration for the circle

      • cx: number

        X coordinate of the center of the circle

      • cy: number

        Y coordinate of the center of the circle

      • radius: number

        Radius of the circle

    • physicsCfg: PhysicsCfg = {}

      A set of configuration options that can be applied while creating the circle:

      • physicsCfg.scene The scene where this body should be made
      • physicsCfg.density The density of the body
      • physicsCfg.elasticity The elasticity of the body
      • physicsCfg.friction The friction of the body
      • physicsCfg.disableRotation Should rotation be disabled?
      • physicsCfg.collisionsEnabled Do collisions happen, or do other bodies glide through this?
      • physicsCfg.stickySides Which sides of the body are sticky, if any?
      • physicsCfg.stickyDelay Delay after something stops sticking, before it can stick again
      • physicsCfg.singleRigidSide Are collisions only valid from one direction?
      • physicsCfg.passThroughId Entities with a matching Id don't collide with each other
      • physicsCfg.rotationSpeed The speed at which to rotate, in rotations per second
      • physicsCfg.dynamic Should the body be forced to be dynamic?
      • physicsCfg.kinematic Should the body be forced to be kinematic?

    Returns CircleBody

    A rigid body with a Circle shape

Properties

body: b2Body

The physics body

debug: undefined | DebugSprite

A debug context for drawing the "hit box"

h: number

Height of the circle

passThroughId?: number[]

Entities with a matching Id don't collide with each other

radius: number

Radius of a circumscribed circle, for culling

revJoint?: b2RevoluteJoint

A joint that allows this entity to revolve around another

revJointDef?: b2RevoluteJointDef

A definition for when we attach a revolute joint to this entity

scene: Scene

The physics world where this body exists

singleRigidSide?: Sides

Are collisions only valid from one direction?

stickyDelay?: number

Delay after something stops sticking, before it can stick again

stickyDistJoint?: b2DistanceJoint

A joint for fusing entities together when one is "sticky"

stickySides: Sides[] = []

Which sides of the body are sticky, if any?

w: number

Width of the circle

Methods

  • Break any distance joints connecting this entity on account of the "sticky" feature. Joints created via setDistanceJoint() won't be destroyed by this call.

    Returns void

  • Make the entity stop rotating

    Returns void

  • Return the center of the entity

    Returns Readonly<b2Vec2>

  • Report if this entity causes transfer of momentum when it collides with other entities (true) or not (false)

    Returns boolean

  • Get the current rotation of the entity, in radians

    Returns number

  • Report the current velocity of this body

    Returns b2Vec2

  • The prerender step will move the Entity's Appearance based on its RigidBody

    Parameters

    • _elapsedMs: number

      The time since the last render

    • actor: Actor

      The entity to which this RigidBody is attached

    Returns void

  • Resize a CircleBody

    Parameters

    • scale: number

      The amount to scale the size by. 1 means "no change", >1 means "grow", fraction means "shrink".

    Returns void

  • Change the position of an entity

    Parameters

    • cx: number

      The new X position, in meters

    • cy: number

      The new Y position, in meters

    Returns void

  • Indicate whether this entity engages in physics collisions or not

    Parameters

    • val: boolean

      True or false, depending on whether the entity will participate in physics collisions or not

    Returns void

  • Create an explicit distance joint between this entity and some other entity

    Parameters

    • anchor: Actor

      The entity to which this entity is connected

    • anchorX: number

      The X coordinate (relative to center) where joint fuses to the anchor

    • anchorY: number

      The Y coordinate (relative to center) where joint fuses to the anchor

    • localAnchorX: number

      The X coordinate (relative to center) where joint fuses to this entity

    • localAnchorY: number

      The Y coordinate (relative to center) where joint fuses to this entity

    Returns b2DistanceJoint

    The joint that was created

  • Adjust the default physics settings (density, elasticity, friction) for this entity

    Parameters

    • cfg: {
          density?: number;
          elasticity?: number;
          friction?: number;
      }
      • Optional density?: number

        New density of the entity

      • Optional elasticity?: number

        New elasticity of the entity

      • Optional friction?: number

        New friction of the entity

    Returns void

  • Create a revolute joint between this entity and some other entity. Note that both entities need to have some mass (density can't be 0) or else this won't work.

    Parameters

    • anchor: Actor

      The entity around which this entity will rotate

    • anchorX: number

      The X coordinate (relative to center) where joint fuses to the anchor

    • anchorY: number

      The Y coordinate (relative to center) where joint fuses to the anchor

    • localAnchorX: number

      The X coordinate (relative to center) where joint fuses to this entity

    • localAnchorY: number

      The Y coordinate (relative to center) where joint fuses to this entity

    Returns b2RevoluteJoint

    The joint that was created

  • Set upper and lower bounds on the rotation of a revolute joint

    Parameters

    • upper: number

      The upper bound in radians

    • lower: number

      The lower bound in radians

    Returns b2RevoluteJoint

    The modified joint. The old revolute joint will be destroyed.

  • Attach a motor to make a revolute joint turn

    Parameters

    • motorSpeed: number

      Speed in radians per second

    • motorTorque: number

      torque of the motor... when in doubt, go with something huge, like positive infinity

    Returns b2RevoluteJoint

    The modified joint. The old revolute joint will be destroyed.

  • Call this on an entity to rotate it around its center

    Parameters

    • rotation: number

      amount to rotate the entity clockwise (in radians)

    Returns void

  • Change the velocity of this body

    Parameters

    • v: b2Vec2

    Returns void

  • Create a weld joint between this entity and some other entity, to force the entities to stick together.

    Parameters

    • other: Actor

      The entity that will be fused to this entity

    • otherX: number

      The X coordinate (relative to center) where joint fuses to the other entity

    • otherY: number

      The Y coordinate (relative to center) where joint fuses to the other entity

    • localX: number

      The X coordinate (relative to center) where joint fuses to this entity

    • localY: number

      The Y coordinate (relative to center) where joint fuses to this entity

    • angle: number

      The angle between the entities

    Returns b2WeldJoint

    The joint that was created