大约有 180 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0038 秒)
Laya2.0_api(59) laya_api(55) Laya_社区(51) Laya2.0_文档(6) Laya3.0_文档(3) Laya2.0_示例(3) Laya_示例(2) Laya3.0_api(1)
...on(Event.MOUSE_DOWN, this, mouseDown); Laya.stage.on(Event.MOUSE_UP, this, mouseUp); })(); //创建地图 function createMap() { //创建地图对象 tiledMap = new TiledMap(); mX = mY = 0; //创建地图,适当的时候调用destory销毁地图 tiledMap.createMap("../../res/tiledMap/desert.json",...
来源: Laya_示例 发布时间: 20241118
...OUSE_DOWN, this, this.mouseDown); Laya.stage.on(Event.MOUSE_UP, this, this.mouseUp); Stat.show(); } // 创建地图 createMap() { const TiledMap = Laya.TiledMap, Rectangle = Laya.Rectangle, Handler = Laya.Handler, Browser = Laya.Browser; mX = mY = 0; // 创建地图对象 this.tiledMap = new TiledMa...
来源: Laya2.0_示例 发布时间: 20241118
... Laya.stage.on(Laya.Event.MOUSE_UP, this, function(){console.log("mouseup")}); mouseup能正常监听到,stage上加的MOUSE_OUT事件,当鼠标移出屏幕时,在浏览器不开device模式下能正常响应,手机上或者浏览器打开device模式时响应不了。请问...
来源: Laya_社区 发布时间: 20200407
...用一态的,给按钮注册event.mousedown事件,然后在监听event.mouseup事件,在按钮触发event.mouseup事件后通过skin切换皮肤即可。 2018-05-12 0 0 分享 微博 QZONE 微信 hepengwei 赞同来自: 那就是用两个图喽,那还不如用两个图来控制显示隐藏...
来源: Laya_社区 发布时间: 20180512
...Laya.stage.on("mousedown", this, this.mouseDown); Laya.stage.on("mouseup", this, this.mouseUp); Laya.stage.on("mouseout", this, this.mouseOut); _this.Obj = owner; } // ObjectRotate.prototype._update = function (state) { ObjectRotate.__super.prototype._update.call(th...
来源: Laya_社区 发布时间: 20170810
...on(Event.MOUSE_DOWN, this, mouseDown); Laya.stage.on(Event.MOUSE_UP, this, mouseUp); Laya.stage.on(Event.MOUSE_OUT, this, mouseOut); var camera:BaseCamera = owner.scene.currentCamera; 没有了 -- currentCamera 2017-02-18 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果...
来源: Laya_社区 发布时间: 20170218
...自定义组件时,发现 laya.ui.Slider中有两个 private 的方法 mouseUp, mouseMove,因为使用了private,所以子类不能继承,不能修改。 2016-12-27 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个...
来源: Laya_社区 发布时间: 20161227
...VE, this, this.__mouseMove); this.bmp.on(Laya.Event.MOUSE_UP, this, this.__mouseUp); console.log(this.pos0.x); } __mouseMove(e:Event){ this.pos1.x=this.bmp.mouseX this.pos1.y=this.bmp.mouseY; if(Utils3D.getThis.getDistance(this.pos0,this.pos1)>10){ this.bmp.graphics.drawLine(this.pos0.x,this.pos0...
来源: Laya_社区 发布时间: 20170831
...nMouseDown); Laya.stage.on('mousemove', this, onMouseMove); Laya.stage.on('mouseup', this, onMouseUp); })(); function createCanvases() { var graphicsCanvas = new Sprite(); Laya.stage.addChild(graphicsCanvas); var liveGraphicsCanvas = new Sprite(); Laya.stage.addChild(liveGraphicsCanvas); liveGraphic...
来源: Laya_示例 发布时间: 20241118
...链接 提交 1 个回复 Monica - 知识达人 赞同来自: 你可以把mouseup和click的回调函数执行同一个,这样你可以在回调方法中通过e.type来判断当前点击的类型。如果是mouseup的话,执行完对应的逻辑就直接return调 2018-01-11 0 2 分享 微博 QZO...
来源: Laya_社区 发布时间: 20180111