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

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

1111. 解析sk资源报错 [ 76%]

...;         }                  private function initView():void         {             _templet = new Templet();             _templet.on(Event.COMPLETE,this,parseComplete);             _templet.on(Event.ERROR,this,onError);             _temple...

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

1112. Sprite-切换纹理 [ 76%]

...], 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

1113. laya.display.Sprite [ 76%]

...ode 添加子节点到指定的索引位置。 Node addChildren(... args):void 批量增加子节点 Node clearTimer(caller:*, method:Function):void 清理定时器。功能同Laya.timer.clearTimer()。 Node contains(node:Node):Boolean 当前容器是否包含指定的 Node 节点对象 。 Node...

来源: laya_api 发布时间: 20170929

1114. Sprite-轴心点 [ 76%]

...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

1115. Laya.loader加载BUG [ 76%]

...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

1116. Sprite-遮罩-放大镜 [ 76%]

...("../../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

1117. Swift中接入Native,执行完drawInRect后不执行update了! 附重现Demo! [ 76%]

...t后不执行update了! 附重现Demo! 在Swift中接入,调用到- (void)glkView:(GLKView *)view drawInRect:(CGRect)rect之后就不执行update 了,看你们的Demo是会继续执行update 方法的   //------------------------------------------------------------------------------   - (v...

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

1118. laya.d3.terrain.TerrainRes [ 76%]

...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

1119. 请问如何释放atlas和他的png资源 [ 76%]

...! 请问这个有什么规律吗 坐等! 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

1120. 如何监听移动端软键盘的弹出和收回? [ 76%]

...sEvent.FOCUS_OUT,onFocusOut); private function onFocusIn(event:FocusEvent):void { textInput.text="你的键盘打开了"; } private function onFocusOut(event:FocusEvent):void { textInput.text="你的键盘消失了"; }   但这样操作貌似并不能完全满足我们的需求,因为以上方...

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