大约有 2,727 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0073 秒)
Laya_社区(1131) Laya3.0_api(543) Laya2.0_api(297) laya_api(221) Laya2.0_文档(201) Laya_示例(139) Laya2.0_示例(109) Laya3.0_文档(86)
... 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
...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
...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
...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
...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
... Browser.window['conch'].setOnBackPressedFunction(function():void{ if(n-- <=0){ Browser.window['conch'].exit(); } }); } 这...
来源: Laya_社区 发布时间: 20170808
...is.publicSpaceList ); public setPublicSpacesData (_publicSpacesInfo:any) : void ///调用这个方 传入参数 里面有每一个图片的名字 { this.publicSpacesInfo = _publicSpacesInfo; this.publicSpaceList.array = this.publicSpacesInfo; } private updateListItem(cell: gamepublicspaceitem.Pu...
来源: Laya_社区 发布时间: 20170923
...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
图片添加点击事件 有的不生效 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
... 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