gpt4 book ai didi

javascript - ImpactJS 和 HammerJS 鼠标输入相互冲突

转载 作者:行者123 更新时间:2023-11-28 08:09:07 24 4
gpt4 key购买 nike

我正在使用 ImpactJS 引擎 ( http://impactjs.com/ ) 构建游戏。游戏需要拖动和滑动等手势。因此,HammerJS 被集成到代码中。

在下面的代码片段中,当左键单击绑定(bind)为ig.input时,不会触发释放事件回调。

init : function() {
// The onRelease() is triggered when this is commented out.
//ig.input.bind( ig.KEY.MOUSE1, "click" );

Hammer( this.canvas ).on( "dragup", this.onDragUp.bind( this ) );
Hammer( this.canvas ).on( "dragdown", this.onDragDown.bind( this ) );
Hammer( this.canvas ).on( "release", this.onRelease.bind( this ) );
},

onRelease : function() {
alert( "Released!" );
}

onDragUp : function( event ) {
//No problem here.
}

onDragDown : function( event ) {
//No problem here.
}

这里似乎有什么问题?谢谢。

最佳答案

这解决了我的问题:

Hammer( this.canvas ).on( "dragup", this.onDragUp.bind( this ), {prevent_default: true} );

https://github.com/EightMedia/hammer.js/issues/538

关于javascript - ImpactJS 和 HammerJS 鼠标输入相互冲突,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24485930/

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