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

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

341. Sprite-切换纹理 [ 72%]

... this.flag = true; Laya.loader.load([monkey1Str, monkey2Str], Laya.Handler.create(this, this.onAssetsLoaded)); } onAssetsLoaded() { monkey1Res = Laya.loader.getRes(monkey1Str), monkey2Res = Laya.loader.getRes(monkey2Str); this.ape = new Laya.Sprite(); Laya.stage.addChild(this.ape); this.ape.pivot(55...

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

342. version.json版本文件会加载缓存的,看了源码也没有忽略缓存 [ 72%]

...ion.type = type;             ILaya.loader.load(manifestFile, Handler.create(null, ResourceVersion.onManifestLoaded, [callback]), null, Loader.JSON);         } load没有设置忽略缓存   应该 static enable(manifestFile, callback, type = 2) {             ResourceVersion.type = t...

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

343. 1.6.2打包的图集不能使用 [ 72%]

...oader.load([{url: "res/atlas/longCard.json", type: Loader.ATLAS}], Handler.create(this, onLoaded)); 在onLoaded var textrue = Laya.loader.getRes(longcard/xxx.png)总是undedined。。。求解。。。 相关链接 : http://ask.layabox.com/question/486 图集打包出来没有prefix。。。get...

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

344. 关于ASTC使用问题和建议 [ 72%]

...是 let tex = new Laya.Texture(); tex.load("ui/guide01.png", Laya.Handler.create(this, ()=>{   this.img.texture = tex; }));   但是如果使用ASTC纹理时就会报错,需要使用异步的方式来处理         Laya.loader.load("ui/guide01.ktx", Laya.Handler.create(this, (res)=>{ ...

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

345. Sprite3D的克隆(JavaScript-3D基础(JS)-LayaAir3D之精灵) [ 72%]

...e3D&name=Sprite3DClone)) ```typescript { ...... //加载模型 Laya.loader.create("res/threeDimen/skinModel/LayaMonkey/LayaMonkey.lh", Laya.Handler.create(this, this.onComplete)); } //完成回调 onComplete() { //获取资源 var layaMonkey = this.scene.addChild(Laya.Loader.getRes("res/threeDimen/s...

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

346. app 的预加载问题 [ 72%]

...s/common.json","type":Loader.ATLAS}, ]; Laya.loader.load(resarray, Handler.create(this, this.preloadLoaded), Handler.create(this, this.onProgress,null,false)); 这个时候这个资源是通过app本地加载还是网上加载的? 2.dcc 有之前安装到手机上的app (a版本),后面服...

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

347. 定时器 · LayaAir3.0文档 · LAYABOX [ 72%]

...: Function, args: any[] = null, coverBefore: boolean = true): void { this._create(true, false, delay, caller, method, args, coverBefore); } 使用示例如下: const { regClass } = Laya; import { RuntimeScriptBase } from "./RuntimeScript.generated"; @regClass() export class RuntimeScript extends R...

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

348. 设置cacheAs = bitmap时, drawCanvas 的一个bug [ 72%]

...src._targets上 /* this._submits[this._submits._length++] = SubmitCanvas.create(src, 0, null); _curSubmit = SubmitBase.RENDERBASE; //画出src._targets //drawTexture(src._targets.target.getTexture(), x, y, width, height, 0, 0); */ //应用并清空canvas中的指令。如果内容需要重画,Rend...

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

349. ls文件导入错误 [ 72%]

...在unity导出一个文件,然后layabox中加载场景。 Laya.loader.create(this.strScene, Laya.Handler.create(this, this.onLoadScene)); private onLoadScene() { var scene: Laya.Scene = Laya.Scene.load(this.strScene); if (scene == null) { return; } this.mScene = scene;   大致的流程如上  ...

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

350. 为什么laya2.0加载不了.lm文件? [ 72%]

为什么laya2.0加载不了.lm文件? Laya.loader.create(["LayaScene_Scene/Scene.ls","LayaScene_Scene/Assets/BakerHouse/Models/Baker_house-Baker_house.lm"],Laya.Handler.create(this, this.completeHandler)); completeHandler(): void { Laya.stage.addChild(Laya.loader.getRes("LayaScene_Scene/Scene.ls...

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