大约有 2,727 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0064 秒)
Laya_社区(1131) Laya3.0_api(543) Laya2.0_api(297) laya_api(221) Laya2.0_文档(201) Laya_示例(139) Laya2.0_示例(109) Laya3.0_文档(86)
...er.create(this,onLoaded),null,Loader.ATLAS); } private function onLoaded():void { list=new List(); Laya.stage.addChild(list); list.itemRender=Item; list.repeatX=1; list.repeatY=6; list.x=((Laya.stage.width-Item.WID)/2); list.y=((Laya.stage.height-Item.HEI*list.repeatY)/2); list.vScrollBarSkin="comp/...
来源: Laya_社区 发布时间: 20170626
...ctor() { super(); } loadImageAndPos(name:string,posX:number,posY:number):void { this.name = name; this.anchorX = 0; this.anchorY = 0; this.x = posX; //这里是256*整数倍的叠加 每张图片都是256*256大小的地图块 this.y = posY; //这里是256*整数倍的叠加 每张图片都是256*...
来源: Laya_社区 发布时间: 20190315
...式化后的地址。 Returns string Methods Static __init__ __init__(): void Defined in laya/net/URL.ts:31 Returns void Static customFormat customFormat(url: string): string Defined in laya/net/URL.ts:70 自定义URL格式化的方式。例如: customFormat = function(url:String):String{} Paramet...
来源: Laya3.0_api 发布时间: 20231115
...olidColorTexture2DProtected Methods MethodDefined By detoryResource():void[override] 销毁资源。 SolidColorTexture2D recreateResource():void[override] 重新创建资源,如果异步创建中被强制释放再创建,则需等待释放完成后再重新加载创建。 SolidColorTextur...
来源: laya_api 发布时间: 20170929
...求官方协助! public post(url: string, data: any, callback: (this: void, data: JSON) => void): void { let hr = new Laya.HttpRequest(); hr.once(Laya.Event.COMPLETE, this, (e: any): void => { callback(JSON.parse(hr.data)); }); ...
来源: Laya_社区 发布时间: 20190829
...,使用时重写覆盖即可 */ onTriggerEnter(other: PhysicsComponent): void { console.log("triggerEnter"); } /** * 持续触发时执行 * 此方法为虚方法,使用时重写覆盖即可 */ onTriggerStay(other: PhysicsComponent): void { console.log("triggerStay"); } /** * 结束触发时执...
来源: Laya2.0_文档 发布时间: 20210714
... changeViewPort(moveX:Number, moveY:Number, width:Number, height:Number):void 改变视口大小 TiledMap changeViewPortBySize(width:Number, height:Number, rect:Rectangle = null):Rectangle 在锚点的基础上计算,通过宽和高,重新计算视口 TiledMap createMap(mapName:String, vi...
来源: laya_api 发布时间: 20170929
... changeViewPort(moveX:Number, moveY:Number, width:Number, height:Number):void 改变视口大小 TiledMap changeViewPortBySize(width:Number, height:Number, rect:Rectangle = null):Rectangle 在锚点的基础上计算,通过宽和高,重新计算视口 TiledMap createMap(mapName:String, vi...
来源: Laya2.0_api 发布时间: 20190513
...a.stage.bgColor = "#232628"; Stat.show(); this.setup(); } private setup(): void { this.initMatter(); this.initWorld(); Laya.stage.on("resize", this, this.onResize); } private initMatter(): void { var gameWorld: Sprite = new Sprite(); Laya.stage.addChild(gameWorld); // 初始化物理引擎 this.engi...
来源: Laya_示例 发布时间: 20241119
...this.socket.on(Event.ERROR,this,errorHandler); } public function connect():void { if(!this.socket.connected){ this.socket.connectByUrl("ws://127.0.0.1:9000");//建立连接; } } public function send(msg:String):void { if(this.socket.connected){ var byte:Byte = new Byte(); byte.writeUTFString(msg);...
来源: Laya_社区 发布时间: 20180202