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

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

871. laya.utils.Stat [ 83%]

... Boolean = false[static] StatPublic Methods  MethodDefined By  enable():void[static] 激活性能统计Stat  hide():void[static] 隐藏性能统计信息。 Stat  show(x:Number = 0, y:Number = 0):void[static] 显示性能统计信息。 StatProperty Detail_useCanvaspropertypublic static var _...

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

872. 分享:图集资源做位图文本的工具类(知道fontclip组件的可以略过了,之前一直没注意到这个组件) [ 83%]

...his.resFix + keyChar + ".png"; } /** * 清除字体 */ private clearFnt(): void { XUtils.removeChilds(this.chars, BPFont.fontPool); } /** * 获取一个字体对象 */ private getSprite(): Laya.Sprite { let sp = BPFont.fontPool.shift() || new Laya.Sprite(); return sp; } /** * 创建位图文本 * @p...

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

873. laya.display.Stage [ 83%]

...ode 添加子节点到指定的索引位置。 Node addChildren(... args):void 批量增加子节点 Node addComponent(type:Class):* 添加组件。 Node addComponentIntance(comp:Component):* 添加组件实例。 Node addInputChild(node:Node):NodeNode callLater(method:Function, args:Array = nu...

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

874. 屏幕适配-缩放-Show All [ 83%]

...olor = "#232628"; this.createCantralRect(); } private createCantralRect(): void { this.rect = new Sprite(); this.rect.graphics.drawRect(-100, -100, 200, 200, "gray"); Laya.stage.addChild(this.rect); this.updateRectPos(); } private updateRectPos(): void { this.rect.x = Laya.stage.width / 2; this.rect...

来源: Laya_示例 发布时间: 20241119

875. 屏幕适配-缩放-Extract Fit [ 83%]

...olor = "#232628"; this.createCantralRect(); } private createCantralRect(): void { this.rect = new Sprite(); this.rect.graphics.drawRect(-100, -100, 200, 200, "gray"); Laya.stage.addChild(this.rect); this.updateRectPos(); } private updateRectPos(): void { this.rect.x = Laya.stage.width / 2; this.rect...

来源: Laya_示例 发布时间: 20241119

876. 更新最新版layaNative0.98 返回键问题 [ 83%]

...        Browser.window['conch'].setOnBackPressedFunction(function():void{                     if(n-- <=0){                         Browser.window['conch'].exit();                     }                 });             } 这...

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

877. Image.loadImage 方法加载问题 [ 83%]

...is.publicSpaceList ); public setPublicSpacesData (_publicSpacesInfo:any) : void ///调用这个方 传入参数 里面有每一个图片的名字 {  this.publicSpacesInfo = _publicSpacesInfo;  this.publicSpaceList.array = this.publicSpacesInfo; } private updateListItem(cell: gamepublicspaceitem.Pu...

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

878. laya.d3.terrain.TerrainLeaf [ 83%]

...nLeaf() 创建一个新的 TerrainLeaf 实例。 TerrainLeaf  __init__():void[static] TerrainLeaf  calcLeafBoudingBox(worldMatrix:Matrix4x4):voidTerrainLeaf  calcLeafBoudingSphere(worldMatrix:Matrix4x4, maxScale:Number):voidTerrainLeaf  calcLODErrors(terrainHeightData:Float32Array, heighData...

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

879. 图片添加点击事件 有的不生效 [ 83%]

图片添加点击事件 有的不生效 private init():void { //添加点击事件处理 this.v_btn_boy.on(Laya.Event.CLICK, this, this.onClickBtnBoy); this.v_btn_friend.on(Laya.Event.CLICK, this, this.onClickBtnFriend); this.v_btn_shop.on(Laya.Event.CLICK, this, this.onClickBtnShop); console.log(...

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

880. 网络和格式-XML [ 82%]

... this.proessXML(xmlValue); } // 使用xml private proessXML(source:string):void { try { var xml:any = Utils.parseXMLFromString(source); } catch (e) { console.log(e.massage); return; } this.printDirectChildren(xml); } // 打印直接子级 private printDirectChildren(xml:any):void { var rootNode:any ...

来源: Laya_示例 发布时间: 20241119