ドロンを実装する

This commit is contained in:
yuuki
2024-12-08 19:04:00 +09:00
parent 427a16733a
commit 59fb5f5ac9
2 changed files with 25 additions and 1 deletions

View File

@@ -1705,7 +1705,10 @@
ctx.fill()
ctx.stroke()
}
if(!fade || fade < 1){
const doron = localStorage.getItem("doron") ?? "false";
if((!fade || fade < 1) && doron === "false"){
// Main circle
ctx.fillStyle = fill
ctx.beginPath()