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

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

11. laya.ui.Button [ 89%]

...I DocumentationAll Packages | All Classes | Index | Frames No Frames ButtonProperties | Methods | Events Packagelaya.uiClasspublic class ButtonInheritanceButton Component Sprite Node EventDispatcher ObjectImplements ISelectSubclasses CheckBox, Radio Button 组件用来表示常用的多态...

来源: laya_api 发布时间: 20170929

12. 关于3d场景上Button点击事件顺序问题 [ 89%]

关于3d场景上Button点击事件顺序问题 1,我在三维场景中加入了一个按钮button。 2,在场景中加入了鼠标点击事件  Laya.stage.on(Event.MOUSE_DOWN,this,sceneClick);   private function sceneClick():void {     trace("scene clicked"); }   3,在button上添加按钮...

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

13. 多个button如何区分 [ 89%]

多个button如何区分 通过 for 循环 加入多个button 添加事件 this.emojiBut1.on(Laya.Event.CLICK,this,this.onEmojiBut1Click); 多个button 如何区分 点击的哪一个button  可以设置tag吗 或者通过监听事件透传?   附件 : --> 2017-04-25 添加评论 免费帖 --> ...

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

14. Button连续点击触发MOUSE_OUT事件问题 [ 89%]

Button连续点击触发MOUSE_OUT事件问题 项目中给“Button”分别添加了MOUSE_OVER, MOUSE_OUT,CLICK事件,业务需求是鼠标移到按钮上显示悬浮框,移出按钮关闭悬浮框,但现遇到一个问题,鼠标正常从按钮上移入,移出都没问题,只要在按...

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

15. laya.ui.Button [ 89%]

...I DocumentationAll Packages | All Classes | Index | Frames No Frames ButtonProperties | Methods | Events Packagelaya.uiClasspublic class ButtonInheritanceButton UIComponent Sprite Node EventDispatcher ObjectImplements ISelectSubclasses CheckBox, Radio Button 组件用来表示常用的多...

来源: Laya2.0_api 发布时间: 20190513

16. Sprite-屏幕截图 [ 88%]

... WebGL = Laya.WebGL, Stage = Laya.Stage; this.btnArr = ["res/threeDimen/ui/button.png", "res/threeDimen/ui/button.png", "res/threeDimen/ui/button.png"]; this.nameArr = ["canvas截图","sprite截图","清理"]; this._canvas = null; this.aimSp = null; this.drawImage = null; this.drawSp = null; this.mo...

来源: Laya2.0_示例 发布时间: 20241118

17. Button点击函数逻辑bug [ 88%]

Button点击函数逻辑bug onMouse(e) { if (this.toggle === false && this._selected) return; if (e.type === Laya.Event.CLICK) { this.toggle && (this.selected = !this._selected); this._clickHandler && this._clickHandler.run(); return; } !this._selected && (this.state...

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

18. 如何用代码触发点击事件? [ 88%]

...       let event = new Laya.Event()                 button.event(Laya.Event.CLICK, event.setTo(Laya.Event.CLICK, button, button));     2019-05-21 0 0 分享 微博 QZONE 微信 Laya_Aaron 赞同来自: 直接调用 sprite1CallBack(); 2018-07-24 0 1 分享 微博 QZONE 微信...

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

19. sound manager在MOUSE_OVER事件中无法播放 [ 88%]

...建一个Sprite充当音效播放按钮             var soundButton: Sprite = this.createButton("播放音效");             soundButton.x = (Laya.stage.width - soundButton.width * 2 + gap) / 2;             soundButton.y = (Laya.stage.height - so...

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

20. 关于button的click监听 [ 87%]

关于button的click监听 let btn:Laya.Button=new Laya.Button(); btn.label="AAAAAA"; btn.pos(200,200); Laya.stage.addChild(btn); btn.on(Laya.Event.CLICK,this,()=>{console.log("click button");});   请问 这样监听不到button的点击事件吗?如果我创建一个ui.view  a  a.on 也...

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