大约有 435 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0038 秒)
Laya3.0_api(153) laya_api(104) Laya2.0_api(96) Laya_社区(56) Laya2.0_示例(8) Laya_示例(7) Laya2.0_文档(6) Laya3.0_文档(5)
如何取消监听 取消监听off需要指定监听函数,但是我在设置监听是如下写的: class a {_EventMgr.on("xxx", () => {this.xxx();}); } _EventMgr是一个全局的监听类,在class a中设置监听并处理,但我删除这个a的实例并重新创建,发现触发事...
来源: Laya_社区 发布时间: 20171012
...destroy event getContext getMemSize getTexture hasListener isCreateFromURL off offAll offAllCaller on once release size toBase64 toBase64Async destroyUnusedResources Constructors constructor new HTMLCanvas(createCanvas?: boolean): HTMLCanvas Overrides Resource.__constructor Defined in laya/resource/...
来源: Laya3.0_api 发布时间: 20231115
...extureRes clearUnLoaded create decodeBitmaps event getRes hasListener load off offAll offAllCaller on once setGroup Constructors constructor new LoaderManager(): LoaderManager Defined in laya/net/LoaderManager.ts:72 创建一个新的 LoaderManager 实例。 注意:请使用Laya.loader加载资源...
来源: Laya3.0_api 发布时间: 20231102
...tcher(); e.on("test", this, this.test1); e.on("test", this, this.test2); e.off("test", this, this.test1); e.off("test", this, this.test2); console.log(e.hasListener("test")); ---------------------------------------- 输出:true 2018-04-23 添加评论 免费帖 --> 分享 微博 QZONE 微信 没...
来源: Laya_社区 发布时间: 20180423
...e) * factor; lastDistance = distance; } function onMouseUp(e) { Laya.stage.off(Event.MOUSE_MOVE, this, onMouseMove); } /**计算两个触摸点之间的距离*/ function getDistance(points) { var distance = 0; if (points && points.length == 2) { var dx = points[0].stageX - points[1].stageX; var dy =...
来源: Laya_示例 发布时间: 20241119
....b) } up2() { console.log("移动的点集合" + this.path); // Laya.stage.off(Laya.Event.MOUSE_DOWN, this, this.down2) Laya.stage.off(Laya.Event.MOUSE_MOVE, this, this.move2) this.path=; } } new GameMain(); 2017-07-21 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 ...
来源: Laya_社区 发布时间: 20170721
...).index(aWater)); }) //Laya.timer.once(3000,this,function(){ // JQ(aWater).off('click');//解除绑定 - 3秒后没有该点击事件了 //}); // //================= demo2 ======================= // //================= demo3 ======================= // JQ(aWater).on('click', function () { // alert( J...
来源: Laya_社区 发布时间: 20171123
...Distance = distance; } onMouseUp(e) { const Event = Laya.Event; Laya.stage.off(Event.MOUSE_MOVE, this, this.onMouseMove); } /**计算两个触摸点之间的距离*/ getDistance(points) { let distance = 0; if (points && points.length == 2) { let dx = points[0].stageX - points[1].stageX; let dy = poi...
来源: Laya2.0_示例 发布时间: 20241119
...dRate getPublicExtData getTotalkeyframesLength hasListener isCreateFromURL off offAll offAllCaller on once setAnimationDataWithCache destroyUnusedResources Constructors constructor new AnimationTemplet(): AnimationTemplet Overrides Resource.__constructor Defined in laya/ani/AnimationTemplet.ts:127 R...
来源: Laya3.0_api 发布时间: 20231115
...oolean 检测指定事件类型是否是鼠标事件。 EventDispatcher off(type:String, caller:*, listener:Function, onceOnly:Boolean = false):EventDispatcher 从 EventDispatcher 对象中删除侦听器。 EventDispatcher offAll(type:String = null):EventDispatcher 从 EventDispatcher 对象...
来源: laya_api 发布时间: 20170929