This commit is contained in:
33333-33333 2026-07-18 22:15:26 +09:00
commit d163ceb291
76 changed files with 1385 additions and 524 deletions

View file

@ -188,7 +188,7 @@
const now = worldRef.time || 0;
if ((item.lastBounceFenceEffectAt || -999) + 0.08 <= now) {
item.lastBounceFenceEffectAt = now;
worldRef.effects?.push(new Effect("ring", item.x, item.y, { size: Math.max(12, radius * 1.15), life: 0.16, color: "rgba(82,153,230,0.45)" }));
worldRef.queueEffect?.("ring", item.x, item.y, { size: Math.max(12, radius * 1.15), life: 0.16, color: "rgba(82,153,230,0.45)" });
}
}
}