diff --git a/idea.md b/idea.md index 93c674b..249a5a7 100644 --- a/idea.md +++ b/idea.md @@ -70,7 +70,7 @@ dam4.png ---- 存档 59 [x] 怪物死亡特效 [] 区域名称显示特效,3D 粒子特效 [x] 单独的工具栏,可以自定义按键 -[] 完全 ts 化 +[x] 完全 ts 化 [] 平行光(待定) [] 视角控制系统 [x] 重构设置界面 @@ -118,3 +118,4 @@ dam4.png ---- 存档 59 [] Box 组件右下角添加 resize 按钮 [] 被光环加成的怪显示受到了哪些加成 [x] 鼠标放到光环怪上时高亮它产生的光环 +[] 删除 unplugin-vue-components 插件,换用 import 引入 diff --git a/src/module/weather/rain.ts b/src/module/weather/rain.ts index cd64227..44b02f4 100644 --- a/src/module/weather/rain.ts +++ b/src/module/weather/rain.ts @@ -234,7 +234,7 @@ class RainShader extends Shader { this.draw(gl, back, param, back.usingIndices); this.useProgram(rain); - this.draw(gl, rain, rainParam, null); + if (this.defaultReady()) this.draw(gl, rain, rainParam, null); return false; }