大约有 392 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0046 秒)
Laya_社区(312) Laya2.0_文档(29) Laya3.0_api(21) Laya3.0_文档(14) Laya2.0_示例(7) Laya_示例(5) laya_api(2) Laya2.0_api(2)
...加载 之后逐个绘制在界面上。 实现很简单,我通过Laya.loader.load预加载把302个图片资源加入到内存中,然后通过getRes 和 drawTexture 添加SPRITE对象到屏幕中。 预加载后的初始内存为29M左右 之后开始逐个添加SPRITE,在添加第1个到第8...
来源: Laya_社区 发布时间: 20161107
...方法只执行一次 */ onAwake(): void { //Web平台使用远程包 Laya.loader.loadPackage("sub1","http://192.168.56.1:2840/",this.printProgress).then(()=>{ Laya.loader.load("sub1/cube.lh").then((res:Laya.PrefabImpl) =>{ let sp3:Laya.Sprite3D =res.create() as Laya.Sprite3D; this.scene3d.add...
来源: Laya3.0_文档 发布时间: 20241014
...是 var resArray:Array<any>=[ {url:"h5/UI.atlas",type:Laya.Loader.ATLAS}, {url:"h5/UI/so_main_base.png",type:Laya.Loader.IMAGE}, ]; Laya.loader.load(resArray,Laya.Handler.create(this,initUI)); 单图就是so_main_base.png,死活就加载不出来, 报错 [warn]Retry to ...
来源: Laya_社区 发布时间: 20180626
... 无法设置属性将其自动释放掉 Monica • 2017-10-10 14:08 Laya.loader.clearRes(url) ckndim • 2017-10-11 10:42 @Monica 不好意思 还是一样 放入skin的base64字串产生的图片无法被释放 运行约2-3分钟后画面物件贴图开始闪烁、遗失 使用DebugPanel查看大...
来源: Laya_社区 发布时间: 20170930
...资源 this.assets.push({ url: "lobby/zhujiemian_ditiao.png", type: Laya.Loader.IMAGE }); Laya.loader.load(this.assets, Laya.Handler.create(this, this.onAssetsLoaded) , Laya.Handler.create(this, this.progress, [], false)); 在加载的时候ios的微信小游戏是没有问题的,但是到...
来源: Laya_社区 发布时间: 20180824
...最后回到原大小或原位置,应该用什么缓动模式 请问下loader如何强制加载一个文件,避免浏览器的缓存 H5动画和节奏的一个加速! 一个3D正方体模型,想给它六个面贴不同的贴图,该如何处理? 如何获取一个3D模型的长宽高? ...
来源: Laya_社区 发布时间: 20180517
...tage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; Laya.loader.load(assets, Laya.Handler.create(this, this.ShowContent)); } ShowContent() { const FontClip = Laya.FontClip; var clipnum= new FontClip(assets[0]); var fontClip = new FontClip(assets[1]); var TestFontClip = new FontClip...
来源: Laya2.0_示例 发布时间: 20241118
...是在同一时间段内加载和解析的,所有会导致卡顿;Laya.Loader批量加载和解析图集时 难道没有做分帧 才导致卡顿?希望优化Loader
来源: Laya_社区 发布时间: 20170809
...TFF字体要怎么加载呢? LayaAir 库文件加载速度慢 请问下loader如何强制加载一个文件,避免浏览器的缓存 问题状态 最新活动: 2020-07-13 19:50 浏览: 1154 关注: 2 人
来源: Laya_社区 发布时间: 20200409
...init(1024, 768, WebGL); Stat.show(0, 0); Laya.stage.bgColor = "#fff"; Laya.loader.load("assets/images/color1.png", Handler.create(this, __loadImageHandler)); } private function __loadImageHandler():void { _colorSpr = new Sprite(); _colorTex = Laya.loader.getRes("assets/images/color1.png"); _colorSpr...
来源: Laya_社区 发布时间: 20180302