大约有 430 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0084 秒)
Laya_社区(250) Laya2.0_api(57) laya_api(53) Laya2.0_文档(29) Laya2.0_示例(15) Laya_示例(13) Laya3.0_文档(11) Laya3.0_api(2)
...息按钮监听 this.AllTitleButton.on(Laya.Event.MOUSE_DOWN, this, ButtonClickManager.clickinstance.AllTitleButtonClick); 而在另外的一个单例脚本中单例分离了执行方法 因为按钮监听太多 需要分离 监听和执行 /** * 基础信息按钮监听 */ public AffirmButton1Cl...
来源: Laya_社区 发布时间: 20190410
...a = closeRect; // closeBtn 为 Laya.Button 实例 this.closeBtn.on(Event.CLICK,this,this.closeWin); private closeWin():void { console.log("the window has closed..."); } 2017-09-20 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链...
来源: Laya_社区 发布时间: 20170920
... Laya.stage.addChild(this.nsp); this.nsp.on(Laya.Event.CLICK,this,this.drawImg,null) } drawImg(e:Event=null):void{ var copySpr:Laya.Sprite=new Laya.Sprite(); copySpr.texture=this.nsp.drawToTexture(1600,1600,0,0) as Laya.Texture; thi...
来源: Laya_社区 发布时间: 20220809
....ape.pos(100,50); // 显示默认纹理 this.switchTexture(); this.ape.on("click", this, this.switchTexture); } private switchTexture(): void { var textureUrl: string = (this.flag = !this.flag) ? this.texture1 : this.texture2; // 更换纹理 this.ape.graphics.clear(); var texture: Texture = Laya.lo...
来源: Laya2.0_文档 发布时间: 20210715
... //监听按钮btnA的点击事件,触发后处理 UI.btnA.on(Laya.Event.CLICK, this, showB); } ``` 代码分出后,我们不要忘了在主包内调用微信小游戏官方提供的分包加载与回调通知方法。在示例项目中,我们直接在图集加载的回调里,加载分包。...
来源: Laya2.0_文档 发布时间: 20210715
...链接 提交 1 个回复 From Nowhere 赞同来自: 自己解决吧let isClick; //前提:把所有可能与3D物体重叠的UI元素的 mouseEnable 设置为 true ,接收鼠标点击 onAwake() { this.isClick = false; //对舞台stage添加点击事件(这里由于有scene的缘故,点击空...
来源: Laya_社区 发布时间: 20210122
...动的你意思~~~ Supermang42 • 2018-08-23 10:16 Botton.on(Event.CLICK); Loop(): void { x++; } 類似這樣。 owen7song • 2018-08-20 11:05 list可以手动滑动 需求是点箭头滑动 不能手动滑动~~ lilynumber1 • 2018-08-20 12:09 @owen7song:list只要你不设置hScrollBar...
来源: Laya_社区 发布时间: 20180820
...ed():void{ var img:Image = new Image("fish_6.png"); img.on(Event.CLICK,this,onClick); img.mouseThrough = true; Laya.stage.addChild(img); } 代码就这么简单,图片我传到附件里面 shiyang • 2018-03-14 15:55 private function onClick(e:Event):void{ trace("xxxxxxx"); }
来源: Laya_社区 发布时间: 20180314
...t,WebGL); Stat.show(); Laya.stage.bgColor = "#ffcccc"; Laya.stage.on(Event.CLICK,this,onClick); sp= new Sprite(); sp.name='base'; sp.loadImage("logo.png"); Laya.stage.addChild(sp); } private function onClick():void { var htmlsss:String=(Laya.stage.getChildAt(0) as Sprite).drawToCanvas(100,100,0,0).g...
来源: Laya_社区 发布时间: 20170523
...nA的点击事件,触发后处理 this.GameMain.newUI.btnA.on(Laya.Event.CLICK, this, this.showB); } //显示B页 private showB():void { this.GameMain.showUI(this.ui.bUI,this.GameMain.newUI) //监听按钮btnB的点击事件,触发后处理 this.GameMain.newUI.btnB.on(Laya.Event.CLICK, this, thi...
来源: Laya2.0_文档 发布时间: 20210715