大约有 395 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0057 秒)
Laya_社区(267) Laya3.0_api(48) Laya2.0_api(25) laya_api(20) Laya2.0_文档(15) Laya3.0_文档(8) Laya_示例(7) Laya2.0_示例(5)
...laya.eventsClasspublic dynamic class EventInheritanceEvent Object Event 是事件类型的集合。一般当发生事件时,Event 对象将作为参数传递给事件侦听器。 Public Properties PropertyDefined By altKey : Boolean[read-only] 表示 Alt 键是处于活动状态 (true) 还是...
来源: Laya2.0_api 发布时间: 20190513
...item List滑动条会引起单元格上的按钮点击后多次触发点击事件 怎么获得laya.input输入框里面的值 鼠标滚轮滚动事件 将list里的scrollBar设置mouseWheelEnable=false后过一段时间设置mouseWheelEnable=true;无法滚动 Panel加了vScrollBarSkin还是不能滚...
来源: Laya_社区 发布时间: 20180312
...21 19:05 老师,为什么用这种方法创建的对象,没办法绑定事件监听? var bt = new Laya.Button("comp/btn_start.png","测试按钮"); bt.on(Laya.Event.CLICK, this, this.click); Laya.stage.addChild(bt); function click() { console.log("??????????"); } ...
来源: Laya_社区 发布时间: 20170421
...blic dynamic class EventInheritanceEvent ObjectSubclasses UIEvent Event 是事件类型的集合。一般当发生事件时,Event 对象将作为参数传递给事件侦听器。 Public Properties PropertyDefined By altKey : Boolean[read-only] 表示 Alt 键是处于活动状态 (true) 还是...
来源: laya_api 发布时间: 20170929
...; this.label.color = "#40FF40"; Laya.stage.addChild(this.label); //鼠标事件 Laya.stage.on(Laya.Event.MOUSE_UP, this, function (): void { var str: String = ""; for (var i: number = 0; i < this._outHitAllInfo.length; i++) { str += this._outHitAllInfo.sprite3D.name + " "; } if (this._outHitAll...
来源: Laya_社区 发布时间: 20180820
...数值无论为多少,如果加了鼠标监听,那么它都支持鼠标事件,哪怕alpha为0的情况下,鼠标事件也会发生。 `visible`控制组件的是否显示,该属性为布尔值,默认值为true,正常显示。当值为false时,组件不显示出来,并且鼠标事...
来源: Laya2.0_文档 发布时间: 20210714
...数值无论为多少,如果加了鼠标监听,那么它都支持鼠标事件,哪怕alpha为0的情况下,鼠标事件也会发生。 `visible`控制组件的是否显示,该属性为布尔值,默认值为true,正常显示。当值为false时,组件不显示出来,并且鼠标事...
来源: Laya2.0_文档 发布时间: 20210715
...数值无论为多少,如果加了鼠标监听,那么它都支持鼠标事件,哪怕alpha为0的情况下,鼠标事件也会发生。 `visible`控制组件的是否显示,该属性为布尔值,默认值为true,正常显示。当值为false时,组件不显示出来,并且鼠标事...
来源: Laya2.0_文档 发布时间: 20210714
... Only exported Menu Globals "laya/events/Event" Event Class Event Event 是事件类型的集合。一般当发生事件时,Event 对象将作为参数传递给事件侦听器。 Hierarchy Event Index Constructors constructor Properties button currentTarget delta isDblClick nativeEvent target touc...
来源: Laya3.0_api 发布时间: 20231115
...ndler = new Handler(this, onClickButton,[button]);//设置 button 的点击事件处理器。 Laya.stage.addChild(button);//将此 button 对象添加到显示列表。 } private function onClickButton(button:Button):void { trace("按钮button被点击了!"); } } } example Laya.init(640, 800);//...
来源: Laya3.0_api 发布时间: 20231115