大约有 2,728 项符合查询结果, 库内数据总量为 30,782 项。 (搜索耗时: 0.0075 秒)
Laya_社区(1131) Laya3.0_api(543) Laya2.0_api(297) laya_api(221) Laya2.0_文档(201) Laya_示例(139) Laya2.0_示例(109) Laya3.0_文档(87)
...; } private function initView():void { _templet = new Templet(); _templet.on(Event.COMPLETE,this,parseComplete); _templet.on(Event.ERROR,this,onError); _temple...
来源: Laya_社区 发布时间: 20170204
...], Handler.create(this, this.onAssetsLoaded)); } private onAssetsLoaded(): void { this.ape = new Sprite(); Laya.stage.addChild(this.ape); this.ape.pivot(55, 72); this.ape.pos(Laya.stage.width / 2, Laya.stage.height / 2); // 显示默认纹理 this.switchTexture(); this.ape.on("click", this, this.swi...
来源: Laya_示例 发布时间: 20241120
...ode 添加子节点到指定的索引位置。 Node addChildren(... args):void 批量增加子节点 Node clearTimer(caller:*, method:Function):void 清理定时器。功能同Laya.timer.clearTimer()。 Node contains(node:Node):Boolean 当前容器是否包含指定的 Node 节点对象 。 Node...
来源: laya_api 发布时间: 20170929
...Laya.stage.bgColor = "#232628"; this.createApes(); } private createApes(): void { var gap: number = 300; this.sp1 = new Sprite(); this.sp1.loadImage("res/apes/monkey2.png", 0, 0); this.sp1.pos((Laya.stage.width - gap) / 2, Laya.stage.height / 2); //设置轴心点为中心 this.sp1.pivot(55, 72); La...
来源: Laya2.0_示例 发布时间: 20241120
...rl,type,cache,group,ignoreCache,useWorkerLoader){ (cache===void 0)&& (cache=true); (ignoreCache===void 0)&& (ignoreCache=false); (useWorkerLoader===void 0)&& (useWorkerLoader=false); if (!url){ ...
来源: Laya_社区 发布时间: 20200427
...("../../res/bg2.png", Handler.create(this, this.setup)); } private setup():void { var bg:Sprite = new Sprite(); bg.loadImage("../../res/bg2.png"); Laya.stage.addChild(bg); this.bg2 = new Sprite(); this.bg2.loadImage("../../res/bg2.png"); Laya.stage.addChild(this.bg2); this.bg2.scale(3, 3); //创建m...
来源: Laya_示例 发布时间: 20241120
...t后不执行update了! 附重现Demo! 在Swift中接入,调用到- (void)glkView:(GLKView *)view drawInRect:(CGRect)rect之后就不执行update 了,看你们的Demo是会继续执行update 方法的 //------------------------------------------------------------------------------ - (v...
来源: Laya_社区 发布时间: 20190510
...nRes[static] 异步回调 TerrainRes load(url:String, complete:Handler):void[static] 加载地形模板,注意:不缓存。 TerrainRes onLoadTerrainComplete(heightData:TerrainHeightData):voidTerrainRes parseData(data:*):BooleanTerrainResProperty Detail_alphaMapspropertypublic var _alphaMaps...
来源: Laya2.0_api 发布时间: 20190513
...! 请问这个有什么规律吗 坐等! private function clickFun():void { url = "res/CH/atlas/MORNUI_Z_Gongneng.atlas"; Laya.loader.load(url,new Handler(this,hh)); //trace( Laya.loader.getRes(url) ); } private function hh():void { Laya.stage.addChild(new Image("MORNUI_Z_Gongneng/clip_xue_quan....
来源: Laya_社区 发布时间: 20171206
...sEvent.FOCUS_OUT,onFocusOut); private function onFocusIn(event:FocusEvent):void { textInput.text="你的键盘打开了"; } private function onFocusOut(event:FocusEvent):void { textInput.text="你的键盘消失了"; } 但这样操作貌似并不能完全满足我们的需求,因为以上方...
来源: Laya_社区 发布时间: 20151225