21 lines
428 B
TypeScript
21 lines
428 B
TypeScript
// ── Shared map constants ──
|
|
// Moved from widgets/map3d/constants.ts to resolve FSD layer violation
|
|
// (features/ must not import from widgets/).
|
|
|
|
export const SHIP_ICON_MAPPING = {
|
|
ship: {
|
|
x: 0,
|
|
y: 0,
|
|
width: 128,
|
|
height: 128,
|
|
anchorX: 64,
|
|
anchorY: 64,
|
|
mask: true,
|
|
},
|
|
} as const;
|
|
|
|
export const DEPTH_DISABLED_PARAMS = {
|
|
depthCompare: 'always',
|
|
depthWriteEnabled: false,
|
|
} as const;
|