gpt4 book ai didi

javascript - Paper.js 上的触发工具事件

转载 作者:行者123 更新时间:2023-11-28 20:41:38 24 4
gpt4 key购买 nike

我的应用使用 Paper.js 作为绘制元素的框架,我目前正在编写一些测试代码。

我需要手动触发工具事件,但出现“emit is not a function”错误。

我是这样做的:

tool.emit('mousedown', {
point: new Point(5, 5)
});

我的代码有什么问题?根据Paper.js documentation :

emit(type, event) Emit an event on the tool.

Parameters: type: String('mousedown'|'mouseup'|'mousedrag'|'mousemove'|'keydown'|'keyup') — the event type event: Object — an object literal containing properties describing the event Returns: Boolean — true if the event had listeners, false otherwise

如果我调试我的代码,工具是一个 Tool 对象,但是 emit 不存在。

最佳答案

emit 似乎不是在 Tool 对象上触发事件的正确函数。 Paper.js 没有记录 fire 函数(至少在较新的版本中)。

我的代码需要像这样才能工作:

tool.fire('mousedown', {
point: new Point(5, 5)
});

关于javascript - Paper.js 上的触发工具事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30348285/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com