Open kingkoo1985 opened 2 weeks ago
[bug] EditorEvent是不是没有原始事件,不好判断是不是右击选中 canvas.editor.on(EditorEvent.SELECT, (event: EditorEvent) => { console.log(event.origin); //undefined })
不是这么用的[捂脸],有专门的右击事件:
https://www.leaferjs.com/ui/reference/event/ui/Pointer.html#%E5%8F%B3%E9%94%AE%E8%8F%9C%E5%8D%95-1
问题是我不要弹出右键菜单,当EditorEvent.SELECT选中时处理,发现右键选中也会进EditorEvent.SELECT
后面看看,可以优化一下
[bug] EditorEvent是不是没有原始事件,不好判断是不是右击选中 canvas.editor.on(EditorEvent.SELECT, (event: EditorEvent) => { console.log(event.origin); //undefined })