Browse Source

日常开发

林旭祥 2 days ago
parent
commit
7b44941150
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/views/game/fruit.vue

+ 2 - 2
src/views/game/fruit.vue

@@ -267,8 +267,8 @@ class Bomb {
 
     // 创建直射光芒效果
     const maxRays = 25; // 光芒数量
-    const rayLength = 200; // 光芒长度
-    const rayWidth = 140; // 光芒宽度
+    const rayLength = 400; // 光芒长度
+    const rayWidth = 200; // 光芒宽度
 
     for (let i = 0; i < maxRays; i++) {
       const angle = (i / maxRays) * Math.PI * 2; // 计算每个光芒的角度