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

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

51. TS分离模式设置未打包图片输出目录导出资源无法加载未打包资源 [ 72%]

...l: "test/TestPage.json", type: Loader.JSON }, ], Handler.create(this, this.onLoaded)); 运行报错: [warn]Retry to load: comp/image.png [error]Failed to load: comp/image.png   修改导出的TestPage.json里面对应控件引用的skin值加上对应路径 "skin":"unpack/comp/image.png" 后能正...

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

52. 请问下,2.0子域工程如何创建UI显示在shareCanvas上 [ 72%]

...是用微信需要 var image = Laya.Browser.window.wx.createImage(); image.onload = function () { console.log(image.width, image.height); context.drawImage(image, 0, 0); }; 绘制到sharecanvas 一样,我直接创建scene和view 都没有效果 2018-11-22 0 0 分享 微博 QZONE 微信 186*****371...

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

53. 添加fairygui使用fairygui.UIPackage.addPackage ( "res/Bag" )后可以正常跑,发布到微信小游戏出错 [ 72%]

...     //Laya.loader.load("res/atlas/comp.atlas", Handler.create(this, onLoaded));              Laya.loader.load             (                 [                     { url: "res/atlas/comp.atlas" , type: Loader.ATLAS },         ...

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

54. 通过html的input类型file上传图片,然后通过FileReader获取图片数据之后设置laya的image.skin图片不显示 [ 71%]

...           var reader=new FileReader();               reader.onload=function () {                         this.headIcon.loadImage(this.result); 或者 this.headIcon.skin=this.result;              }              reader.readAsDataURL(file);  } 2017-08-08 添加...

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

55. 微信小游戏IDE加载位图字体,提示错误 [ 71%]

...eFont (http://127.0.0.1:61385/game/code.js:803:17)     at Loader.__proto.onLoaded (http://127.0.0.1:61385/game/code.js:12700:11)     at HTMLImage.onload (http://127.0.0.1:61385/game/code.js:21213:15)     at Image._source._source.onload (http://127.0.0.1:61385/game/code.js:20175:11)   请问...

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

56. 按照打地鼠教程来无法正常加载资源 [ 71%]

...;             Laya.loader.load(resArr,Handler.create(this,this.onLoaded));         }         private function onLoaded():void{             //显示界面             var gameView:GameView = new GameView();             Laya.stage.addChil...

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

57. 【简单跑酷--JS版】---Lv.4 添加玩家 [ 71%]

...加载图集资源 Laya.loader.load(asset, laya.utils.Handler.create(this, onLoaded), laya.utils.Handler.create(this, onLoading, null, false)); 嗯 加载改好了 我们先来测试一下 图片是否能拿到 我们在onLoaded方法里面 写一点测试代码 如下   function onLoaded(){ consol...

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

58. 请问如何加载base64的图片 [ 71%]

...s) { var self=this; var file=files[0]; var reader=new FileReader(); reader.onload=function () { this.headIcon.loadImage(this.result); } reader.readAsDataURL(file); } 是这样显示的吗?我的为何也不显示,通过html的input上传的图片,然后通过FileReader来获取图片数据,...

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

59. 动效模板(JavaScript-LayaAir基础篇(JS)-动画基础) [ 71%]

...台上 Laya.loader.load("./res/atlas/comp.atlas",Laya.Handler.create(this,onLoaded)); function onLoaded(){ //实例化导出的UI类 var efc = new ui.TestPUI(); //添加到舞台 Laya.stage.addChild(efc); } ``` 运行后,按钮被按下时,动画效果如动图11所示: ![12](img/12.gif)(图11...

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

60. 动效模板(TypeScript-LayaAir基础篇(TS)-动画基础) [ 70%]

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

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