大约有 36 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0032 秒)
...法是通过射线检测碰撞的点来移动人物,但是射线检测在MOUSE_MOVE里检测的,有时会出现检测不到,导致人物突然卡主过几秒又能检测到了,目前场景里就一个plane,一个人物,plane和人物用的不同的碰撞组, 比较困惑的是为什么...
来源: Laya_社区 发布时间: 20201209
...法是通过射线检测碰撞的点来移动人物,但是射线检测在MOUSE_MOVE里检测的,有时会出现检测不到,导致人物突然卡主过几秒又能检测到了,目前场景里就一个plane,一个人物,plane和人物用的不同的碰撞组, 比较困惑的是为什么...
来源: Laya_社区 发布时间: 20201209
...ent.MOUSE_DOWN, this, onCtrlMoveRockerTouchDown); Laya.stage.on(Laya.Event.MOUSE_MOVE, this, onCtrlMoveRockerTouchDown); function onCtrlMoveRockerTouchDown(e) { console.log("onCtrlMoveRockerTouchDown()"); this.ctrlMoveRockerPosX = undefined; this.ctrlMoveRockerPosY = undefined; ...
来源: Laya_社区 发布时间: 20171204
...Layer); drawLayer.width = 800; drawLayer.height = 1030; drawLayer.on(Event.MOUSE_MOVE, this, mousemove); function mousemove(e) { drawLayer.graphics.drawCircle(e.target.mouseX,e.target.mouseY,20,"#ffffff") drawLayer.cacheAsBitmap; } 我的思路是每一次move都把对应的圆形...
来源: Laya_社区 发布时间: 20160725
....addChild(ape); ape.loadImage("WBSign/img_guakaituceng.png"); ape.on(Event.MOUSE_MOVE, this, onMouseMove); interactionArea = new Sprite(); interactionArea.blendMode = "destination-out"; ape.addChild(interactionArea); interactionArea.graphics.clear(); } function onMouseMove(e) { if(mouseX!=0){ if(Mat...
来源: Laya_社区 发布时间: 20170615
...ll, function(e){ option.startDrag({}, false, 1) }) option.on(Laya.Event.MOUSE_MOVE, null, function(){ questionNode.answers.visible = true; //这个不生效 }); 2017-09-22 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 scorpio ...
来源: Laya_社区 发布时间: 20170921
...n(Laya.Event.MOUSE_DOWN, this, this.onMouseDown); Laya.stage.on(Laya.Event.MOUSE_MOVE, this, this.onMouseMove); Laya.stage.on(Laya.Event.MOUSE_UP, this, this.onMouseUp, [true]); } /** 按钮动画处理 */ private hitTest(t: Laya.Image) { let s = t.source.getPixels(t.mouseX, t.mouseY, 1, 1).join('')...
来源: Laya_社区 发布时间: 20180731
...-11-07 0 0 分享 微博 QZONE 微信 kezhiyu 赞同来自: 为什么不用MOUSE_MOVE, 请按照正常流程, mousedown以后 要监听层级的mousemove 然后将mousemove 的回调中的 e.clientx 和e.clientxY 赋值给...
来源: Laya_社区 发布时间: 20171106
...tage.mouseY)); //鼠标按下的时候进行移动侦听 e.target.on(Event.MOUSE_MOVE, this, this.onItemBoxMouseMove, [e.target, index]); } } if (e.type == Event.MOUSE_UP) { this.mouseDown = false; this.itemOnMouseUp(); } //点击标记文本 if (e.target.name == "flag" && e.type == Event.CLICK) thi...
来源: Laya2.0_示例 发布时间: 20241118
...mousedown[static] 定义 mousedown 事件对象的 type 属性值。Event MOUSE_MOVE : String = mousemove[static] 定义 mousemove 事件对象的 type 属性值。Event MOUSE_OUT : String = mouseout[static] 定义 mouseout 事件对象的 type 属性值。Event MOUSE_OVER : String = mouseover[st...
来源: Laya2.0_api 发布时间: 20190513