大约有 126 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0056 秒)
Laya_社区(78) laya_api(12) Laya2.0_api(12) Laya3.0_文档(7) Laya2.0_文档(6) Laya_示例(6) Laya2.0_示例(4) Laya3.0_api(1)
...lass() export class NewScript extends Laya.Script { @property({ type: Laya.Button }) public uiBtn: Laya.Button; constructor() { super(); } /** * 组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 */ onAwake(): void { this.uiBtn.on(Laya.Event.CLICK, th...
来源: Laya3.0_文档 发布时间: 20241014
...roy()销毁精灵不起作用 请问一下,在编辑模式下放置一个button 但是click事件不起作用什么原因 nativefiles不起作用 为什么off不起作用 好像1.7.17类库创建阴影和发光滤镜不起作用哦 MOUSE_DOWN与MOUSE_MOVE同时存在,不起作用,哪位大神...
来源: Laya_社区 发布时间: 20171130
...; if (this.confirmBtn == null) { this.confirmBtn = document.createElement("button"); this.confirmBtn.id = "confirm"; this.confirmBtn.innerText = "确定" this.MyBtn.appendChild(this.confirmBtn); } this.newMask = document.createElement("div"); this.modlueDiv.style.visibility = "visible"; var clip...
来源: Laya_社区 发布时间: 20181214
...方法只是多了个位置的设置就好用了,按说sprite和不是和button一样吗 ohkei • 2017-01-20 16:21 btn.mouseEnabled = true,还是不识别鼠标事件啊 ohkei • 2017-07-22 22:45 @Monica: 我如何能让Sprite宽高默认是内容的宽高? Monica • 2017-08-24 11:04 @ohkei...
来源: Laya_社区 发布时间: 20170120
...N和RIGHT_MOUSE_UP,改为派发MOUSE_DOWN和MOUSE_UP,可以通过Event.button区分鼠标左中右键。 3.5 事件汇总 Laya.Script 里相关的输入处理函数有: /** * 鼠标按下时执行 */ onMouseDown?(evt: Event): void; /** * 鼠标抬起时执行 */ onMouseUp?(evt: Event): void; /...
来源: Laya3.0_文档 发布时间: 20230406
...区域底边之间的垂直距离(以像素为单位)。 Component button : Button[read-only] 获取对 ComboBox 组件所包含的 Button 组件的引用。 ComboBox cacheAs : String 指定显示对象是否缓存为静态图像,cacheAs时,子对象发生变化,会自动重新缓存...
来源: laya_api 发布时间: 20170929
...域底边之间的垂直距离(以像素为单位)。 UIComponent button : Button[read-only] 获取对 ComboBox 组件所包含的 Button 组件的引用。 ComboBox cacheAs : String 指定显示对象是否缓存为静态图像,cacheAs时,子对象发生变化,会自动重新缓存,...
来源: Laya2.0_api 发布时间: 20190513
...s,this.onUIAssetsLoaded)); } private onUIAssetsLoaded():void{ var btn:Laya.Button = new Laya.Button("res/a.png"); Laya.stage.addChild(btn); //创建隐藏的file并且把它和按钮对齐。达到位置一致,这里我们默认在0点位置 var file:any = Laya.Browser.document.createElement("inpu...
来源: Laya3.0_文档 发布时间: 20241014
...s,this.onUIAssetsLoaded)); } private onUIAssetsLoaded():void{ var btn:Laya.Button = new Laya.Button("res/a.png"); Laya.stage.addChild(btn); //创建隐藏的file并且把它和按钮对齐。达到位置一致,这里我们默认在0点位置 var file:any = Laya.Browser.document.createElement("inpu...
来源: Laya2.0_文档 发布时间: 20210715
...e(this,onUIAssetsLoaded)); function onUIAssetsLoaded(){ var btn = new Laya.Button("res/a.png"); Laya.stage.addChild(btn); //创建隐藏的file并且把它和按钮对齐。达到位置一致,这里我们默认在0点位置 var file = Laya.Browser.document.createElement("input"); //设置file样...
来源: Laya2.0_文档 发布时间: 20210714