@box2d/debug-draw
Version:
Debug drawing helper for @box2d
15 lines • 551 B
TypeScript
export interface b2Settings {
/**
* You can use this to change the length scale used by your game.
* For example for inches you could use 39.4.
*/
lengthUnitsPerMeter: number;
/**
* The maximum number of vertices on a convex polygon. You cannot increase
* this too much because b2BlockAllocator has a maximum object size.
*/
maxPolygonVertices: number;
}
export declare const settings: b2Settings;
export declare function configure(changes: Partial<b2Settings>): void;
//# sourceMappingURL=config.d.ts.map