File size: 398 Bytes
7e312e3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
export function drawPanel(ctx, x, y, width, height, margin = 2) {
// Draw margin/border
ctx.fillStyle = 'rgba(255, 255, 255, 0.5)';
ctx.fillRect(x, y, width, height);
// Draw background with margin
ctx.fillStyle = 'black';
ctx.globalAlpha = 1.0;
ctx.fillRect(
x + margin,
y + margin,
width - (margin * 2),
height - (margin * 2)
);
}
|