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

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

731. Spine 间隔一段时间卡顿5000毫秒左右,期间GPU占用极高, Demo已上传 [ 63%]

...owser.width, Browser.height); Stat.show();  //棋子动画 this.genSpine("res/spine/ludo_qizidongzuo.skel", Laya.Handler.create(this, (templet: Laya.SpineTemplet) => {  //模版复用 let y = 400; let unitWidth = Laya.stage.width / 16; for (let i = 0; i < 16; i++) { let person = templet.buil...

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

732. 多线程worker(JavaScript-2D进阶篇(JS)-游戏加载策略) [ 63%]

...stener('message', function (e) { var xmlreq = new XMLHttpRequest(); xmlreq.responseType = "text"; xmlreq.onload = function (e) { var data = e.currentTarget.response; self.postMessage(data); } xmlreq.open("get","res/atlas/comp.json"); xmlreq.send() }, false); ``` 这个例子是在worker中进行加...

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

733. UI弹窗 · LayaAir3.0文档 · LAYABOX [ 63%]

...建完毕,此方法只执行一次 */ onAwake(): void { this.assets = ["resources/res/ui/dialog (1).png", "resources/res/ui/close.png"]; Laya.loader.load(this.assets).then( ()=>{ this.onSkinLoadComplete(); } ); } private onSkinLoadComplete(e: any = null): void { this.dialog = new Laya.Dialog();...

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

734. sound manager在MOUSE_OVER事件中无法播放 [ 62%]

...log("播放音乐");             SoundManager.playMusic("../../res/sounds/bgm.mp3", 1, new Handler(this, this.onComplete));         }          private onPlaySound(e: Event): void {             console.log("播放音效");             Sound...

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

735. 3D中如何限制角色的行走区域? [ 62%]

...度图        高度图的预加载:                {url: "res/heightMap.png", clas:Texture2D, priority:1, params:[true]}        场景中初始化MeshTerrainSprite3D:               //通过场景中子父级节点寻找可行走区域网格模型               var ...

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

736. 多线程worker(TypeScript-2D进阶篇(TS)-游戏加载策略) [ 62%]

...stener('message', function (e) { var xmlreq = new XMLHttpRequest(); xmlreq.responseType = "text"; xmlreq.onload = function (e) { var data = e.currentTarget.response; self.postMessage(data); } xmlreq.open("get","res/atlas/comp.json"); xmlreq.send() }, false); ``` 这个例子是在worker中进行加...

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

737. 在加载包含Animation的prefab后,动画没有显示 [ 62%]

...载预制体之前先加载动画需要的图片资源,资源一般再 res/atlas里面   代码如下 Laya.loader.load(["res/atlas/zombie/z2.atlas"],Laya.Handler.create(this,function(){ Laya.loader.load("prefab/gk2v1.json",Laya.Handler.create(this,function(pref:Laya.Prefab){ var gkpref:Laya.Prefa...

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

738. 微信小游戏wxmin图片加载有点问题 [ 62%]

...7-848524d9beb6/timg.jpg') // console.log(123120, ape) // Laya.loader.load('res/mao.jpg', Laya.Handler.create(this, function (){ // var t = Laya.loader.getRes('res/mao.jpg') // console.log(t) // var a = new Laya.Sprite() // a.graphics.drawTexture(t, 0,0) // a.scaleX = 0.3 // a.scaleY = 0.4 // a.pos(0...

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

739. 图集动画(TypeScript-LayaAir基础篇(TS)-动画基础) [ 62%]

...动画图集,加载成功后执行回调方法 this.roleAni.loadAtlas("res/atlas/role.atlas",Laya.Handler.create(this,this.onLoaded)); } private onLoaded():void{ //添加到舞台 Laya.stage.addChild(this.roleAni); } } new AtlasAniDemo(); ``` 运行代码,如图5所示。动画已加载到舞台...

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

740. 飞机大战js源码中判断语句问题 [ 62%]

...建背景1 bg1 = new Sprite(); //加载并显示背景图1 bg1.loadImage("res/background.png"); //把背景1添加到容器 box box.addChild(bg1); //创建背景2 bg2 = new Sprite(); //加载并显示背景图2 bg2.loadImage("res/background.png"); //设置背景图2的坐标 bg2.pos(0, -852); //把...

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