• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 140 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0036 秒)

81. Laya.stage.on的Mouse事件,正常情况下没问题,但是Laya.stage.pos移动后就失灵了,请问如何解决? [ 60%]

...请问如何解决? 我这样设置的代码: 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

82. layaAir真的没办法做涂鸦板? [ 60%]

...; 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

83. 请问这是原因? [ 60%]

...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

84. 重复背景,全方向地图拖动Demo [ 60%]

...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

85. laya.events.Event [ 59%]

...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

86. 滚动地图问题 [ 59%]

...,在手机上滑动,地图还是会移动,主要是因为Mouse_DOWN, Mouse_UP是加在Laya.stage上的,请问什么好一点的办法让我打开Dialog的时候,滑动屏幕,后面的TiledMap不会滚,Dialog关掉,后面地图又可以滚动? 2017-09-02 添加评论 免费帖 --> ...

来源: Laya_社区 发布时间: 20170902

87. 3D模型旋转问题,鼠标移动之后,根据按下移动的X坐标差值判断左右旋转,但是会越转越快,请问是什么问题? [ 58%]

...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

88. laya.events.Event [ 58%]

...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

89. Stage中删除不掉Scene [ 58%]

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

90. 无法清除指定定时器 [ 58%]

...   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