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

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

881. HttpRequest 回调方法都没执行 LayaAir 1.7.17 beta JS版本 [ 42%]

..., type : Laya.Loader.ATLAS} ]; Laya.loader.load(resourceArray,Laya.Handler.create(null,loadResourceComplete)); } function loadResourceComplete() { Laya.stage.addChild(new LoginView()); } })(); feiguangfu • 2018-03-16 09:55 这个是主的JS. 数据服务器都能正常接收,但是返回的值...

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

882. VScrollBar属性详解(TypeScript-IDE篇(TS)-IDE组件属性详解) [ 42%]

...e.bgColor = "#232628"; //加载资源 Laya.loader.load(this.skins, Handler.create(this, this.onSkinLoadComplete)); } /***加载资源完成***/ private onSkinLoadComplete(e:any=null):void { //创建垂直滚动条 this.createVScroller(); } /***创建水平滚动条***/ private createVScroller():void...

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

883. 动效模板(ActionScript-LayaAir基础篇(AS3)-动画基础) [ 42%]

...成功后添加到舞台 Laya.loader.load("./res/atlas/ui.atlas",Handler.create(this,onLoaded)); } private function onLoaded():void { //实例导出的UI类 var efc:EffectAnimationDemoUI = new EffectAnimationDemoUI(); //添加到舞台 Laya.stage.addChild(efc); } } } ``` 运行后,按钮被按下...

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

884. Laya.loader.clearTextureRes引起的内存泄露以及恢复图片显示闪烁 [ 42%]

...    Laya.loader.load(this.skPath.replace(".atlas",".png"),Laya.Handler.create(this,function(bit){                 var arr = Laya.Loader.getAtlas(this.skPath);                 arr.forEach(resUrl=>{                     var tex = Laya.Loader.getRes...

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

885. 模型与动画的导入使用 · LayaAir3.0文档 · LAYABOX [ 42%]

...oader.load("girl/girl.lh").then(res => { let girl : Laya.Sprite3D = res.create(); this.scene3D.addChild(girl); //获得Animator this._animator = girl.getComponent<Laya.Animator>(Laya.Animator); }); this.on( Laya.Event.MOUSE_DOWN, this, this.switchAni ); } switchAni(): void { if (this._isRun...

来源: Laya3.0_文档 发布时间: 20230303

886. Button属性详解(ActionScript-IDE篇(AS3)-IDE组件属性详解) [ 42%]

...源成功后,执行onLoaded回调方法 Laya.loader.load(skin, Handler.create(this, onLoaded)); } private function onLoaded():void { //创建一个Button实例 var btn:Button = new Button(skin); //将Button添加到舞台 Laya.stage.addChild(btn); //设置Button相关的属性 btn.width = 100; btn...

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

887. 请大家帮助优化一下这个抛物线的代码 [ 42%]

...100, 619, Laya.WebGL); Laya.loader.load("res/atlas/war.atlas",Laya.Handler.create(this,this.onLoaded),null,Laya.Loader.ATLAS); } private onLoaded():void{ this.ball = new Ball(); Laya.stage.addChild(this.ball); this.ball.x = Laya.stage.width / 2; this.ball.y = Laya.stage.height / 2; Laya.stage.on(Lay...

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

888. iOS9兼容bug,求指教 [ 42%]

...-06-13 11:20:12.225 RBaoSANGuo_H5L1[1552:289925] iOS OpenGL ES 3.0 context created 2019-06-13 11:20:12.519 RBaoSANGuo_H5L1[1552:289925] 激活码a5f32aff-18ba-481e-aec7-ae791407385f 2019-06-13 11:20:12.534 RBaoSANGuo_H5L1[1552:289925] 请求链接:https://info.x5cv.com/apigateway/v1/ 2019-06-13 11...

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

889. ViewStack属性详解(JavaScript-IDE篇(JS)-IDE组件属性详解) [ 41%]

...onLoaded回调方法 Laya.loader.load("res/atlas/comp.atlas",Laya.Handler.create(this,onLoaded)); function onLoaded(){ //创建一个UI实例 this.comp = new ui.ComponentDemoUI(); //添加到舞台上显示 Laya.stage.addChild(this.comp); //点击Tab选择按钮的处理 this.comp.tab.selectHandler ...

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

890. ViewStack属性详解(TypeScript-IDE篇(TS)-IDE组件属性详解) [ 41%]

...onLoaded回调方法 Laya.loader.load("res/atlas/comp.atlas",Laya.Handler.create(this,this.onLoaded)); } private onLoaded():void{ //创建一个UI实例 this.comp = new ui.ComponentDemoUI(); //添加到舞台上显示 Laya.stage.addChild(this.comp); //点击Tab选择按钮的处理 this.comp.tab.sel...

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