Changed stroke color of menu
This commit is contained in:
parent
06a982747e
commit
6aed092c24
3 changed files with 10 additions and 3 deletions
1
game.js
1
game.js
|
@ -67,6 +67,7 @@ window.addEventListener("load", async () => {
|
|||
getContext: (elem, type) => elem.getContext(type),
|
||||
setGlobalAlpha: (ctx, alpha) => ctx.globalAlpha = alpha,
|
||||
setFillColor: (ctx, color) => ctx.fillStyle = color,
|
||||
setStrokeColor: (ctx, color) => ctx.strokeStyle = color,
|
||||
setFont: (ctx, font) => ctx.font = font,
|
||||
setTextAlign: (ctx, align) => ctx.textAlign = align,
|
||||
clearRect: (ctx, x, y, w, h) => ctx.clearRect(x, y, w, h),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue