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

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

81. laya 好像不能加载网络路径图片 [ 59%]

...)     at start (laya.js:77)     at onAssetLoaded (laya.js:47)     at Handler.__proto.runWith (laya.core.js:681)     at ResInfo.loadComplete (laya.core.js:12125)     at EventHandler.__proto.runWith (laya.core.js:682) 2017-07-19 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找...

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

82. 类未找到方法 [ 59%]

...行域错了,this变成window了。简单的解决办法是回调改成Handler,你这个也可以看下你添加回调方法得地方,改下也可以。,方法后面增加.bind(this) 2017-01-18 0 0 分享 微博 QZONE 微信 xuhu1518 赞同来自: RequestConfig.instance.getRequestConfig(Stri...

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

83. load方法加载cdn上面的图片资源的时候直接报了跨域不同源的问题,怎么破? [ 59%]

...e.log('Gzdaze='); console.log(Gzdaze); Laya.loader.load(Gzdaze.dialogList, Handler.create(this, this.startLoaded)); 代码是这样的 报错 Access to Image at 'http://caifu-1251177394.file.myqcloud.com/beta/book/bookLaya/img/progressBar$bar.png' from origin 'http://bookportal.com' has been blocked...

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

84. 引用3d物理引擎失败,有文件丢失 Laya3D._physics3D.btVector3 找不到 [ 59%]

...omplete (file:///E:/ycyheroH5/ycyZYWZW/Client/bin/js/bundle.js:68463:8) at Handler.__proto.run (file:///E:/ycyheroH5/ycyZYWZW/Client/bin/js/bundle.js:36051:26) at onComplete (file:///E:/ycyheroH5/ycyZYWZW/Client/bin/js/bundle.js:51721:15) at Handler.__proto.runWith (file:///E:/ycyheroH5/ycyZYWZW/Cli...

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

85. Socket连接不上(已解决) [ 59%]

...自: 服务器需要按照http协议进行解码,WebSocketServerProtocolHandler处理数据 我这边用的netty4.x 下面是管道处理流程 //HttpServerCodec: 针对http协议进行编解码 pipeline.addLast("httpServerCodec", new HttpServerCodec()); //ChunkedWriteHandler分块写处理,文...

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

86. graphics绘制报错 [ 58%]

...WebGL); const path = "./res/apes/monkey2.png"; Laya.loader.load(path, Laya.Handler.create(this, function() { let tex = Laya.loader.getRes(path); let sp = new Laya.Sprite(); Laya.stage.addChild(sp); sp.graphics.drawTriangles( tex, 100, 0, new Float32Array([0,0,1,0,1,1,0,1]), new Float32Array([0,0,1,0...

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

87. tween complete 报错 以及如何判断对象正在缓动中 [ 58%]

...把 Laya.Tween.to(letterText, { y : 300 }, 1000, Laya.Ease.bounceIn, Laya.Handler.create(this,this.changeColor,[letterText]), i * 100); 2017-11-22 0 0 分享 微博 QZONE 微信 liner1457387450 赞同来自: 恩恩,你写的这句是基本的用法,我想用tween API里complete()立即完成...

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

88. 模仿教程里的打地鼠写的代码,运行报错 [ 58%]

...r = "#ffcccc"; //加载资源 Laya.loader.load("res/atlas/comp.atlas",Laya.Handler.create(this,onLoaded),null,Laya.Loader.ATLAS) })(); function onLoaded(){ //实例化 var tempBG=new background(); Laya.stage.addChild(tempBG); } })();在background.js里是这样写的 var background = (function (_sup...

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

89. 有没有SoundChannel的示例? [ 58%]

有没有SoundChannel的示例? SoundManager.playSound(_url, _loop, new Handler(this, _fn)); var channel:SoundChannel = new SoundChannel(); SoundManager.addChannel(channel); _btn.on(Event.CLICK, this, soundClick); function soundClick(evt:Event){ alert("channel.isStoped:"+channel.isStoped); if (ch...

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

90. laya3.0中jszip使用异常 [ 58%]

... Laya.loader.load([{ url: zipUrl, type: Laya.Loader.BUFFER }], null, Laya.Handler.create(this, this.onLoadCfg, null, false)).then(             (value) => {                 JSZip.loadAsync(value).then(                     (zipData: JSZip) => {                   ...

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