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

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

311. 资源已加载,但还是黑屏。 [ 78%]

...。   2018-03-03 0 0 分享 微博 QZONE 微信 Laya_Aaron 赞同来自: res 里面有资源吗 2018-03-03 0 3 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 wq 相关问题 加载到舞台的3D模型不显示贴图 2.2.0beta4 发布微信...

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

312. Image和HtmlImageElement加载同一张图会显示不出来 [ 78%]

...立即加载 for (int i = 0; i < 10; ++i) {      var url:String = "res/xxx" + i + ".png";      Laya.loader.load(url); }   // 先Image var img:Image = new Image(); img.skin = "res/test1.png"; img.pos(100, 100); // 再Html var html = new HTMLDivElement(); html.innerHTML = "<img src='res/...

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

313. 内存释放问题 [ 78%]

LayaAir引擎 内存释放问题 export class ResUIModuleManager { /** * 模块资源路径 */ private static moduleResPath: string = 'res/atlas/{0}.json'; /** * 模块的资源名称和模块的主面板(模块的主面板类全名,模块资源图集名称[]) * @type {Laya.Dictionary} * @mem...

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

314. Laya.SoundManager.playSound报错 [ 78%]

Laya.SoundManager.playSound报错 Laya.SoundManager.playSound("res/sound/bullet.mp3");官方的飞机教程,同样插入音效会报错   附件 : --> 2018-06-14 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 3 个回复 ...

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

315. clearUnLoaded的bug LayaAirIDE1.7.9 [ 78%]

clearUnLoaded的bug LayaAirIDE1.7.9 function test(){     var arr = [res.popup.atlas("loadingUI"), res.download.bg("bg5")]     Laya.loader.load(arr, Laya.Handler.create(this, onComplete))     Laya.loader.clearUnLoaded()     Laya.loader.load(arr, Laya.Handler.create(this, onComplete))...

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

316. 隐藏默认的虚拟键、屏蔽APP窗口弹出脚本错误信息 的问题 [ 78%]

...误信息 Laya.Browser.window.onerror = handleErr; //初始化函数 LoadRes(); })(); function handleErr(msg,url,l) { //return true or false return false; } function LoadRes() { var resArray = [ {url: "res/atlas/comp.json",type: Laya.Loader.ATLAS}, {url: "res/atlas/newhfh.json",type: Laya.Loader.ATL...

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

317. LayaUI中的input组件不显示 [ 78%]

...         Laya.stage.screenMode = Laya.Stage.SCREEN_HORIZONTAL; loadres(); function loadres(){ var res=[ {'url':'res/atlas/comp.json'} ] Laya.loader.load(res,Laya.Handler.create(this,Main)); } function Main(){ Laya.stage.addChild(new loginUI()); } })();   附件 : --> 2017-11-23 添加评论...

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

318. Texture2D的GPU纹理压缩的使用(ActionScript-3D基础(AS3)-LayaAir3D之纹理) [ 78%]

...ayabox.com/demo2/?language=ch&category=3d&group=Texture&name=TextureGPUCompression)) 在这里使用了 `URL.basePath` 方法,去设置加载路径,并且不同的平台加载不同的资源,来使用压缩纹理 ```typescript if (Browser.onAndroid) URL.basePath = "res/threeDimen/scene/LayaS...

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

319. 其他引擎的Demo-Example_23 [ 78%]

...SCALE_NOBORDER; // create a background texture Laya.stage.loadImage("../../res/pixi/laserBG.jpg"); Laya.stage.frameLoop(1, this, animate); })(); function animate() { if (tick > frequency) { tick = 0; // iterate through the dudes and update the positions var laser = new Sprite(); laser.loadImage("../...

来源: Laya_示例 发布时间: 20241118

320. 图片使用pivotX参数后,再对图片添加遮罩会出现效果不对。 [ 78%]

...   Laya.stage.bgColor = "#232628";         Laya.loader.load("../../res/bg2.png", Handler.create(this, setup));     })();     function setup()     {         var bg = new Sprite();         bg.loadImage("../../res/bg2.png");         Laya.stage.addChild(bg);      ...

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