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

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

171. [LayaAirIDE 2.0]TextInput真机输入时显示蓝色字,求解 [ 61%]

...{ this._forgetMode(); } // 添加取消事件 this.lb_cancel.on(Laya.Event.CLICK, this, () => { // 返回登陆页 Laya.Scene.open("Auth.scene"); }); // 遍历数组添加事件 this._arrInput.forEach((element, index) => { element.on(Laya.Event.FOCUS, this, this._onInputEvent, [element, this._...

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

172. js飞机大战报错 请大神看看 [ 61%]

...点击事件 点击后暂停游戏         this.pauseBtn.on(Laya.Event.CLICK, this, this.onPauseBtnClick);         // 初始化UI 显示         this.reset();     } ...     "Cannot read property 'on' of undefined" "TypeError: Cannot read property 'on' of undefined     at new GameIn...

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

173. 为何对sp的监听事件没有反应呢? [ 61%]

...tage.height - xxx.height) / 2; Laya.stage.addChild(xxx); xxx.on(Laya.Event.CLICK, this, this.onXXX); private onXXX() {    console.debug("Hello"); } 2017-06-06 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 cuixu...

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

174. 分享个代码 实现 Mesh 3D 点击 [ 60%]

...lider);     webglRaycaster.SetMeshCastLayer(node);     node.on(Event.CLICK,this, onNodeClickedHandler); 4,方法:   private function onNodeClickedHandler(source:Sprite3D):void    {      if (!source) return;      trace(source.name);   } 附件 : --> WebglRaycaster.zip 2017-05-16 ...

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

175. sprite不能设置点击区域 [ 60%]

...rite(); sp.graphics.drawPie(0, 0, 300, 0, 90, "#00ffff"); sp.on(Laya.Event.CLICK, this, this.aa) sp.mouseEnabled = true; // 设置点击区域没有作用 var hitArea = new Laya.HitArea(); hitArea.unhit.drawPie(0, 0, 150, 0, 90, "#00ffff"); sp.hitArea = hitArea; 我想要实现的效果就是一个...

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

176. 显示与切换图片(ActionScript-LayaAir基础篇(AS3)-位图) [ 60%]

...图片区域的点击事件,触发后执行switchImg切换图片 img.on("click",this,switchImg); //将图片添加到舞台 Laya.stage.addChild(img); } private function switchImg(e:*=null):void { //清空图片 img.graphics.clear(); //获得要切换的图片资源路径 var imgUrl:String = (flag ...

来源: Laya2.0_文档 发布时间: 20210715

177. hitArea怎么用 [ 60%]

...       container.hitArea = bg2Sprite;          container.on(Event.CLICK,this,deskClick); 请问下 我这段代码设置热区 为什么没反应 而且现在看HitArea这个类也没有 api里面没找到 都不知道怎么用了,http://ask.layabox.com/question/2676  这个方法无效 而...

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

178. 两个view形式页面,互相加载用什么事件? [ 60%]

...然后实例化view页面。以下是简单的代码示例: btn.on(Event.CLICK,this,onClick); //在onClick函数中写以下代码 var testView:TestView = new TestView(); Laya.stage.addChild(testView); 其实你也可以创建一个UI示例项目看下里边是怎么调用的 2017-06-29 1 0 分享...

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

179. Laya事件不能添加给多边形吗? [ 60%]

Laya事件不能添加给多边形吗? var clickRect = new Laya.Sprite(); clickRect.graphics.drawRect( 0, 0, Laya.stage.width, Laya.stage.height-100, "#ffffff" ); Laya.stage.addChild( clickRect ); clickRect.on( Laya.Event.CLICK, this, function(){ console.log( 'adf' ) } );   我创建一个多边...

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

180. 高级应用-渲染纹理 [ 60%]

....height - 100 * Laya.Browser.pixelRatio); changeActionButton.on(Laya.Event.CLICK, this, function () { layaPlane.getChildAt(0).meshRender.material.diffuseTexture = renderTargetCamera.renderTarget; }); })); } function setMaterials(spirit3D) { if (spirit3D instanceof Laya.MeshSprite3D) { var meshSprite...

来源: Laya_示例 发布时间: 20241118