The amount an entity is moving when supplied to moveEntity

interface MoveEntityOptions {
    xVelocity?: number;
    yVelocity?: number;
}

Properties

xVelocity?: number

Amount the entity is moving across the X-axis

yVelocity?: number

Amount the entity is moving across the Y-axis