Commit b951dda7 by qlintonger xeno

尝试添加截图标注+10

parent be9e38f8
// @ts-nocheck
import {drawCanvas, plantCanvas} from "../objs/renderBasic"; import {drawCanvas, plantCanvas} from "../objs/renderBasic";
import {ComplexDrawHandleFunc} from "../types/HandlerFunc"; import {ComplexDrawHandleFunc} from "../types/HandlerFunc";
import {ComplexDrawAttachment, ContinuousDrawAttachment} from "../types/AttachmentSpecifics"; import {ComplexDrawAttachment, ContinuousDrawAttachment} from "../types/AttachmentSpecifics";
......
// @ts-nocheck
import {drawCanvas} from "../objs/renderBasic"; import {drawCanvas} from "../objs/renderBasic";
import {ComplexDrawHandleFunc} from "../types/HandlerFunc"; import {ComplexDrawHandleFunc} from "../types/HandlerFunc";
import {ContinuousDrawAttachment} from "../types/AttachmentSpecifics"; import {ContinuousDrawAttachment} from "../types/AttachmentSpecifics";
......
...@@ -33,7 +33,7 @@ class EventBus { ...@@ -33,7 +33,7 @@ class EventBus {
} }
} }
if (delIndexs.length) { if (delIndexs.length) {
this.eventMap[eventName] = eventList.filter((event, i) => { this.eventMap[eventName] = eventList.filter((_, i) => {
return !delIndexs.includes(i) return !delIndexs.includes(i)
}) })
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment