PhysicsCfg describes provides advanced, but optional, ways of altering the physical behavior of rigid bodies when they are being constructed.

interface PhysicsCfg {
    collisionsEnabled?: boolean;
    density?: number;
    disableRotation?: boolean;
    dynamic?: boolean;
    elasticity?: number;
    friction?: number;
    kinematic?: boolean;
    passThroughId?: number[];
    rotationSpeed?: number;
    scene?: Scene;
    singleRigidSide?: Sides;
    stickyDelay?: number;
    stickySides?: Sides[];
}

Properties

collisionsEnabled?: boolean

Do collisions happen, or do other bodies glide through this?

density?: number

The density of the body

disableRotation?: boolean

Should rotation be disabled?

dynamic?: boolean

Should the body be forced to be dynamic?

elasticity?: number

The elasticity of the body

friction?: number

The friction of the body

kinematic?: boolean

Should the body be forced to be kinematic?

passThroughId?: number[]

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

rotationSpeed?: number

The speed at which to rotate, in rotations per second

scene?: Scene

The scene where this body should be made (defaults to stage.world)

singleRigidSide?: Sides

Are collisions only valid from one direction?

stickyDelay?: number

Delay after something stops sticking, before it can stick again

stickySides?: Sides[]

Which sides of the body are sticky, if any?