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

大约有 1,204 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0053 秒)

531. 动画实例在调用含有名字参数的时候获取不到边界 [ 71%]

...Battle extends Laya.Script{ playerUnitReady:number; enemyUnitReady:number; private playerUnit:Laya.Animation[]; private enemyUnit:Laya.Animation[]; constructor(){ super(); Laya.stage.alignH= Laya.Stage.ALIGN_CENTER; Laya.stage.alignV = Laya.Stage.ALIGN_MIDDLE; } onEnable(){ this.playerUnit = []; thi...

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

532. Laya.loader Progress回调形同虚设 [ 71%]

Laya.loader Progress回调形同虚设 private function beginLoad():void { //加载引擎需要的资源 Laya.loader.load([ "res/1.png", "res/2.png", "res/3.png", "res/4.png", "res/5.png", "res/6.png", "res/7.png" ], Handler.create(this, onLoaded),Handler.create(this, onProgress)); //Laya.loader.lo...

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

533. 批量销毁释放内存(ActionScript-3D基础(AS3)-LayaAir3D的内存管理) [ 70%]

...e不为空表示场景已加载完成 garbageCollection(); break; } /** * @private 销毁场景并且释放资源 */ public function garbageCollection():void { _scene.destroy();//销毁场景 _scene = null; Resource.destroyUnusedResources();//销毁无用资源(没有被场景树引用,并且没有...

来源: Laya2.0_文档 发布时间: 20210715

534. layabox打包有问题用cordova打包没问题 [ 70%]

...微信进入也没有问题 主要原因是如下代码执行出现问题private function loadconfig():void{ trace("---------------loadBaseConfAfterGame"); Laya.loader.load( temploaArr, Handler.create(this,loadAllBaseConfFun,[_afterGameConfigArr])/*,progressHandler*/); } private function loadAllBase...

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

535. 模拟鼠标事件 [ 70%]

...); //给stage监听点击事件 Laya.stage.on(Event.CLICK,this,onClick); } private function onClick():void { trace("test!"); } } } 2017-06-07 0 3 分享 微博 QZONE 微信 Playerdata1 赞同来自: 谢谢楼上的哥们回答 可惜不是我要的  我的问题是 不知道 在这个坐标上是...

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

536. UI-Image [ 70%]

...ode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; this.setup(); } private setup(): void { var dialog: Image = new Image("res/ui/dialog (3).png"); dialog.pos(165, 62.5); Laya.stage.addChild(dialog); } } } new laya.UI_Image();package { import laya.display.Stage; import laya.ui.Image; import l...

来源: Laya2.0_示例 发布时间: 20241124

537. 批量销毁释放内存(TypeScript-3D基础(TS)-LayaAir3D的内存管理) [ 70%]

...空表示场景已加载完成 this.garbageCollection(); break; } /** * @private 销毁场景并且释放资源 */ public garbageCollection():void { this._scene.destroy();//销毁场景 this._scene = null; Laya.Resource.destroyUnusedResources();//销毁无用资源(没有被场景树引用,并且没...

来源: Laya2.0_文档 发布时间: 20210715

538. Panel滚动条滑块位于最下方 [ 70%]

...p.json",type:Loader.ATLAS},{url:"bg2.png"}],Handler.create(this,onCom)); } private function onCom():void { var img:Image=new Image(); img.skin="bg2.png"; panel=new Panel(); panel.vScrollBarSkin="comp/vscroll.png"; panel.width=300; panel.height=300; Laya.stage.addChild(panel); panel.addChild(img); pa...

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

539. textInput的单行输入&多行输入(TypeScript-LayaAir基础篇(TS)-文本) [ 70%]

....bgColor = "#232628"; this.createSingleInput(); this.createMultiInput(); } private createSingleInput(): void { var inputText: Input = new Input(); inputText.size(350, 100); inputText.x = Laya.stage.width - inputText.width >> 1; inputText.y = (Laya.stage.height - inputText.height >> 1) - 100; // 移...

来源: Laya2.0_文档 发布时间: 20210715

540. Panel控件滑动区域不正常的问题 [ 70%]

...angeScroll”方法的最后一行添加  this.setContentHitArea(); /** *@private *设置内容的宽度、高度(以像素为单位)。 *@param width 宽度。 *@param height 高度。 */ __proto.setContentSize=function(width,height){ //... this.setContentHitArea(); } /**@private */ __proto.ch...

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