大约有 1,308 项符合查询结果, 库内数据总量为 30,782 项。 (搜索耗时: 0.0061 秒)
Laya_社区(1120) Laya2.0_文档(69) Laya3.0_文档(49) Laya2.0_示例(27) Laya_示例(24) Laya3.0_api(17) laya_api(1) Laya2.0_api(1)
...reate(this,loadComplete));//加载资源 function loadComplete() { console.log("资源加载完成!"); var button = new laya.ui.Button("resource/ui/button.png","label");//创建一个 Button 类的实例对象 button ,传入它的皮肤skin和标签label。 button.x =100;//设置 button 对象的...
来源: Laya3.0_api 发布时间: 20231115
...reate(this,loadComplete));//加载资源 function loadComplete() { console.log("资源加载完成!"); var checkBox:laya.ui.CheckBox= new laya.ui.CheckBox("resource/ui/check.png", "这个是一个CheckBox组件。");//创建一个 CheckBox 类的类的实例对象 checkBox ,传入它的皮肤skin...
来源: Laya3.0_api 发布时间: 20231115
...s 09-10 18:47:40.835 26418-26418/com.layabox.game E/GED: Failed to get GED Log Buf, err(0) 09-10 18:47:40.932 26418-26418/com.layabox.game E/MPlugin: Unsupported class: com.mediatek.common.telephony.IOnlyOwnerSimSupport 09-10 18:47:41.028 26418-26418/com.layabox.game E/LayaGameEngine: game_plugin_in...
来源: Laya_社区 发布时间: 20190910
...is._layerMap[layerStr]; if(layer === null || layer === undefined){ console.log(layerNodeName + ' don not match the rule of layer node.'); return; } if(bRemove){ this.removeLayer(target,layer); } else{ this.addLayer(target,layer); } } } } public static removeAllLayers(target) { target.cullingMask = 0...
来源: Laya_社区 发布时间: 20200110
...setImg(cell.dataSource); } private onSelect(index: number): void { console.log("当前选择的索引:" + index); } } class Item extends Laya.Box { static WID: number = 373; static HEI: number = 85; private img: Laya.Image; constructor() { super(); this.size(Item.WID, Item.HEI); this.img = new Lay...
来源: Laya3.0_文档 发布时间: 20241014
...ld(rg); return rg; } private onSelectChange(index: number): void { console.log("你选择了第 " + (index + 1) + " 项"); } } 效果如图所示: (图3-1) Copyright ©Layabox 2022 all right reserved,powered by LayaAir Engine更新时间: 2024-10-14 20:55:49 img{cursor:pointer}
来源: Laya3.0_文档 发布时间: 20241014
... case "left": console.log(this.text + " left"); if (isFF) { alignmentText = '<text text-anchor="start" dominant-baseline="middle" '; } else { ...
来源: Laya_社区 发布时间: 20180824
...l.getPoolBySign("Bullet"); // 查看当前对象池内对象数量 console.log( bulletPool.length ); if( bulletPool.length == 0 ) { // 把子弹放入对象池 pool.push( new Bullet() ); } 2.2 清理一个对象池 /** * 清除对象池的对象。 * @param sign 对象类型标识字符。 */ static...
来源: Laya3.0_文档 发布时间: 20230303
...OLUMNS | 0) * this.VERTICAL_SPACING + this.yOffset; btn.pos(x, y); console.log(x, y); } } private createButton(skin: string): Laya.Button { var btn: Laya.Button = new Laya.Button(skin); this.owner.addChild(btn); return btn; } } 上述代码运行效果如动图2-1所示: (动图2-1) Copyright ©La...
来源: Laya3.0_文档 发布时间: 20241014
...;"; ele.on(Laya.Event.LINK, this, (event: Laya.Event) => { console.log(event); }); Laya.stage.addChild(ele); zyy • 2021-11-09 13:51 @Laya_Fred: 这段代码 很简单 只是点击 输出 event 如果 把Laya.stage.y 向下调整 就会导致它点击区域错误 zyy • 2021-11-09 13:55 @L...
来源: Laya_社区 发布时间: 20211105