大约有 140 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0036 秒)
Laya_社区(86) Laya_示例(13) Laya2.0_文档(12) Laya2.0_示例(10) Laya2.0_api(6) laya_api(6) Laya3.0_文档(6) Laya3.0_api(1)
...请问如何解决? 我这样设置的代码: Laya.stage.on(Laya.Event.MOUSE_UP, this, this.onMouse); Laya.stage.on(Laya.Event.MOUSE_DOWN, this, this.onMouse); Laya.stage.on(Laya.Event.MOUSE_MOVE, this, this.onMouse); 在frameLoop中,我让Laya.stage.pos(movex,movey)后,就再不会调用thi...
来源: Laya_社区 发布时间: 20180311
...; Laya.stage.on(Laya.Event.MOUSE_MOVE,this,bb) }) Laya.stage.on(Laya.Event.MOUSE_UP,this,function(){ Laya.stage.off(Laya.Event.MOUSE_MOVE,this,bb) }) function bb(e){ s.graphics.clear(); arr[arr.length-1].push(e.stageX); arr[arr.length-1].push(e.stageY); for(var i=0;i<arr.length;i++){ s.graphics.d...
来源: Laya_社区 发布时间: 20180510
...e2.graphics = graphics2; Laya.stage.addChild(sprite2); Laya.stage.on(Event.MOUSE_UP,this,mouseUP); } public var flagCircle:Graphics = new Graphics(); public var flag:Sprite = new Sprite(); //让直线在圆内旋转 public function mouseUP():void{ var point:Point = sprite.globalToLocal(new Point(Lay...
来源: Laya_社区 发布时间: 20190515
...age.on(Laya.Event.MOUSE_DOWN,this,this.mouseDown) Laya.stage.on(Laya.Event.MOUSE_UP,this,this.mouseUp) this.moveMap(this.offsetX,this.offsetY) } moveMap(x,y){ let X = -x00 let Y = -y00 this.map0.x = X this.map0.y = Y this.map3.x = X + 1800 this.map3.y = Y + 1800 if(X < -540){ this.map1.x = X + 18...
来源: Laya_社区 发布时间: 20181220
...useover[static] 定义 mouseover 事件对象的 type 属性值。Event MOUSE_UP : String = mouseup[static] 定义 mouseup 事件对象的 type 属性值。Event MOUSE_WHEEL : String = mousewheel[static] 定义 mousewheel 事件对象的 type 属性值。Event OPEN : String = open[static] ...
来源: Laya2.0_api 发布时间: 20190513
...,在手机上滑动,地图还是会移动,主要是因为Mouse_DOWN, Mouse_UP是加在Laya.stage上的,请问什么好一点的办法让我打开Dialog的时候,滑动屏幕,后面的TiledMap不会滚,Dialog关掉,后面地图又可以滚动? 2017-09-02 添加评论 免费帖 --> ...
来源: Laya_社区 发布时间: 20170902
...s.rotate(vec); } } 监听的鼠标移动事件 Laya.stage.on(Laya.Event.MOUSE_UP,this,this.mouseUp); Laya.stage.on(Laya.Event.MOUSE_DOWN,this,this.mouseDown); Laya.stage.on(Laya.Event.MOUSE_MOVE,this,this.mouseMove); private mouseDown():void{ let mX:number = Laya.stage.mouseX; this.lastMouseX ...
来源: Laya_社区 发布时间: 20180113
...useover[static] 定义 mouseover 事件对象的 type 属性值。Event MOUSE_UP : String = mouseup[static] 定义 mouseup 事件对象的 type 属性值。Event MOUSE_WHEEL : String = mousewheel[static] 定义 mousewheel 事件对象的 type 属性值。Event OPEN : String = open[static] ...
来源: laya_api 发布时间: 20170929
Stage中删除不掉Scene Laya.stage.on(Laya.Event.MOUSE_UP, this, function () { var str = ""; if (!hit.sprite3D) { str = "点击选取的几何体"; } else { Laya.stage.removeChild(scene3D); } console.log(str); }); 每次删除scene3D后...
来源: Laya_社区 发布时间: 20171016
... trace("______________________"); } this.stage.on(Event.MOUSE_UP, this, onB); private function onB():void { Laya.timer.clear(this, this.looppp); SoundManager.playSound("res/sound/onClick.wav"); } 我这边测...
来源: Laya_社区 发布时间: 20180508